+ 1
My Hello world program doesn't work
I am sure I wrote it correctly but the output says no output, I am working in this playground. Class MyClass{ Public static void main(String[]args) { System.out.printIn("Hello World"); } }
6 Answers
+ 2
the p is not suppose to be capitalized in public or the c in class
public class Program
{
public static void main(String[] args) {
System.out.println("Woooo");
}
}
+ 1
write the class and public in lower case and give a gap between STRING[] AND args
0
post your code and we can help.
0
(String[] args){
0
you save as MyClass.java and compile it
0
String args[] try this