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!