fork download
  1. class Test{
  2. public static void main(String args[]){
  3. new Test();
  4. }
  5. Test(){
  6. System.out.println("Hello World!");
  7. }
  8. }
Success #stdin #stdout 0.05s 4386816KB
stdin
Standard input is empty
stdout
Hello World!