Skip to content

Instantly share code, notes, and snippets.

identification division.
program-id. hello.
procedure division.
display "Hello, World".
stop run.
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World");
}
}