Files
compiler-explorer/examples/cobol/default.cob
2023-03-01 06:17:26 +08:00

6 lines
141 B
COBOL

identification division.
program-id. hello.
procedure division.
display "Hello World!".
stop run.