I'm new to coding and I'm trying to run my helloworld script in the command prompt and it keeps saying it can't find or load the main class. I used eclipse to write the code and i can see the main class in the run configurations, but when i put that in it says the same thing. Here's the code.
package helloworld;
public class helloworld {
public static void main(String[] args) {
// TODO Auto-generated method stub
System.out.println("Hello World!");
//display the string
}
}