I have just downloaded the IDE, and I want to edit my first Java file with it, I\'m not interested in creating a whole project, just editing the single file.
So I op
Don't forget the String[] args in your main method. Otherwise, there's no option to run your program:
String[] args
public static void main(String[] args) { }