tags:

views:

25

answers:

1

what is the instruction for compiling via IBM Jikes .

for example :

public class Test{
    public static void main(String[] args) {
        System.out.println("HelloWorld!");
    }
}
+1  A: 

Perhaps if you read the Jikes FAQ, you will see how to use it. The invocation is basically identical to javac

Yann Ramin