hello-world/cobol/helloworld.cbl
2024-04-04 20:16:56 +02:00

6 lines
112 B
COBOL

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