I just installed Eclipse and began to work on a simple hello world program, but arrived on an error,
"Error: Could not find or load main class Schedule."
I have tried everything in this thread Eclipse error "Could not find or load main class" including editing path, changing the run configuration, cleaning, and many other solutions.
public class Schedule
{
public static void main(String[] args)
{
System.out.println("hello world");
}
}
I expected it to load hello world on console, but it does not show up, I have tried multiple solutions on many websites, but none of them seem to work.
Edit: here is a screenshot of my files https://i.stack.imgur.com/SJOvl.jpg