mirror of
https://github.com/epasveer/seer.git
synced 2026-08-29 16:40:42 +08:00
7 lines
171 B
COBOL
7 lines
171 B
COBOL
* Sample COBOL program
|
|
IDENTIFICATION DIVISION.
|
|
PROGRAM-ID. hello.
|
|
PROCEDURE DIVISION.
|
|
DISPLAY "Hello, world!".
|
|
STOP RUN.
|