...
Code Block |
---|
System.out.println("Hello World!"); |
Save the file TestClass.java
by hitting Ctrl+s or the save button (top left on the menu bar). To run your code, go to the top center of the menu bar and hit the run icon (its a green circle with a white arrow inside), or go to the menu bar and hit Run → Run. The Console should pop up on the bottom with the output of your program.
...