i've tried "javac MyFirstJavaProgram.java"
it succed but when it come to the next "java MyFirstJavaProgram" it could not found or load main class, what does it means?
this is my syntax
public class MyFirstJavaProgram {
/* This is my first java program.
* This will print 'Hello World' as the output
*/
public static void main(String []args) {
System.out.println("Hello World"); // prints Hello World
}
}