Reputation: 21
I made a simple project on NetBeans 8.2 and for some reason, It won run my project. The symbol for the run button is unclickable.
I've clicked the run on the menu bar but it's still not working for me.
public class FirstFile {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
//I tried using this command on my project. Just to test.
Upvotes: 1
Views: 154
Reputation: 4294
Another project might be already running in your NetBeans,
Click the button below to stop the execution of the current project and then try to run your programme. Or else you can close NetBeans and reopen it and then run your programme.
Upvotes: 0