import sort.InsertionSort; /* * Created on 24 oct. 2004 * */ /** * @author baudon * */ public class TestSort { public static void main(String[] args) { InsertionSort.doSort(args); for (int j = 0; j < args.length; ++j) { System.out.print(args[j] + " "); } System.out.println(); } }