Aaron Muir Hamilton 3e8f5ba47d Make cobol.cbl a well-formed COBOL program.
- Start statements after seven columns.
- Use lowercase, as it is less hideous.
- Terminate `display` properly with `end-display`.
- Make the `program-id` field match the file name.
2016-07-14 18:20:44 -04:00

7 lines
167 B
COBOL

identification division.
program-id. cobol.
procedure division.
main.
display 'Hello, world.' end-display.
stop run.