You can run the code you have so far, and turn it into a program. It doesn't do anything, but it will still compile. So let's add one line of code just so that we can see how it works.
We'll output some text to a console window. Add the following line to your main method:
public static void main(
String[ ] args ) {
System.out.println( "My First Project"
);
}
Click for Details