Linux Notes: GnuCOBOL on Linux

  1. The information presented here is intended for educational use by qualified computer technologists.
  2. The information presented here is provided free of charge, as-is, with no warranty of any kind.
Edit: 2026-09-23
Back to: Linux Notes: GnuCOBOL

hello-world-free-format.cob

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
Neil Rieck
Waterloo, Ontario, Canada.