I'm trying to learn Java for the first time and I'm following a toutorial but i keep getting the same error after i try to run my code :/ My code:
public class Main {
public static void main(String[] args) {
// TODO Auto-generated method stub
System.out.print("I love pizza");
}
}
My error:
Error: Could not find or load main class Main
Caused by: java.lang.ClassNotFoundException: Main
I've already created a 'Main' class but it won't work.
I thought it would print 'I love pizza' to the console window like it did in the toutorial i was watching but that does not happen :/