I am using eclipse and trying to run hello world program. I keep getting this error when I try to run the program:
Error: Could not find or load main class HelloWorld
I do have the jdk installed and eclipse is pointing to C:\Program Files\Java\jdk1.7.0_80.
Is there anything else am I missing?
public class HelloWorld {
public static void main(String[] args) {
// TODO Auto-generated method stub
System.out.println("Hello world!");
}
}