CodeNest

Hello, Java

All Java code lives inside a class. The program starts at the main method:

public class Main {
    public static void main(String[] args) {
        System.out.println("Hello, World!");
    }
}

System.out.println prints a line. Statements end with ; and blocks use braces.

Try it

Print:

Hello, Java!
Java unavailable
Next
Running Java needs a server execution engine, which isn't configured on this deployment. You can still read the lesson and try the code locally.
Loading editor…

Press Ctrl/ + Enter or click Run to see the output here.