javaclass

tests/MainTest.java

158:a52e70c3f294
2005-01-23 Paul Boddie Added "safety measures" for exception offset insertion, although better measures are necessary to avoid bizarre JDK 1.4 exception tables.
     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