I created a java project by following these steps:
1.File->java project
2. Created the package.
3. Created the main class.
Wrote a simple program to print hello world
package misc;
public class MyMainClass {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
but I get an error when starting the program
Launch configuration GrammaticalStructure.1 references non-existing project begins.
Could you tell me what could be causing this?
source
share