mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-19 10:51:59 +02:00
5 lines
101 B
COBOL
5 lines
101 B
COBOL
IDENTIFICATION DIVISION.
|
|
PROGRAM-ID. hello-world.
|
|
PROCEDURE DIVISION.
|
|
DISPLAY "Hello, world!"
|
|
.
|