Notes:
*> file : hello-world-free-format.cob
*> notes : this is a free format COBOL demo
*> build : cobc -x -free hello-world-free-format.cob
*> execute: ./hello-world-free-format
*> history:
*> when who what
*> 2023-02-14 NSR original effort
IDENTIFICATION DIVISION.
PROGRAM-ID. hello-world-classic.
PROCEDURE DIVISION.
DISPLAY "Hello World!".
STOP RUN.
Back to Home