mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 11:44:09 -05:00
6 lines
141 B
COBOL
6 lines
141 B
COBOL
identification division.
|
|
program-id. hello.
|
|
procedure division.
|
|
display "Hello World!".
|
|
stop run.
|