jdisa/tests/Test.java
author Markus Bröker <mbroeker@largo.dyndns.tv>
Mon, 08 Mar 2010 18:30:04 +0100
changeset 121 fef2ccfa7b12
parent 95 d2a071bd1a60
permissions -rw-r--r--
step 2) Header seperation cpuid, bits, list and maybe lsf are too common names and have to reside in a seperate folder to avoid clashes committer: Markus Bröker <mbroeker@largo.homelinux.org>

public class Test {
    public static void main (String args[]) {
        int i;
          try {
            i = Integer.parseInt (args[0]);
            System.out.printf ("%d%n", i + 5);
        } catch (Exception e) {
            e.printStackTrace ();
        }
    }
}