fork(1) download
  1. class Alpha {
  2. public static void main(String[] args) {
  3. System.out.println("... won't compile");
  4. }
  5. public static void main() {
  6. System.out.println("... will not run");
  7. }
  8. }
Success #stdin #stdout 0.09s 212416KB
stdin
Standard input is empty
stdout
... won't compile