javaclass

tests/MainTest.java

161:b3d6020a2737
2005-01-24 Paul Boddie Reformatted and added a note about the memory issue in the test program.
     1 public class MainTest {     2     public static void main(String[] args) {     3         for (int i = 0; i < args.length; i++) {     4             System.out.println(args[i]);     5         }     6     }     7 }     8      9 // vim: tabstop=4 expandtab shiftwidth=4