0
what's wrong with this?
public class HelloWorld { public static viod main (String[] args) { System.out.println("Hello World"); } }
1 Answer
+ 7
Check spelling of void.
Change viod to void.
public class HelloWorld { public static viod main (String[] args) { System.out.println("Hello World"); } }