hello-world/cobol/helloworld.cbl

7 lines
104 B
Plaintext
Raw Normal View History

2024-04-04 18:16:56 +00:00
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLOWORLD.
PROCEDURE DIVISION.
2024-04-04 20:30:28 +00:00
DISPLAY "Hello World!".
STOP RUN.