Skip to content

Instantly share code, notes, and snippets.

identification division.
program-id. 99-bottles.
data division.
working-storage section.
77 max pic 9(02) value 99.
77 bottle-word pic x(07).
77 bottles pic 99.
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");
}
}