hello-world/cobol/helloworld.cbl
2024-04-04 22:30:28 +02:00

7 lines
104 B
COBOL

IDENTIFICATION DIVISION.
PROGRAM-ID. HELLOWORLD.
PROCEDURE DIVISION.
DISPLAY "Hello World!".
STOP RUN.