fork download
  1. class HelloWorld {
  2. public static void main(String[] args) {
  3. System.out.println("Hello, World!");
  4. System.out.println("args[0] : " + args[0]);
  5. }
  6. }
Runtime error #stdin #stdout #stderr 0.05s 320576KB
stdin
hmm
stdout
Hello, World!
stderr
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 0
	at HelloWorld.main(Main.java:4)