Skip to main content

Hello World Program

      * Setup the identification division
IDENTIFICATION DIVISION.
* Setup the program id
PROGRAM-ID. A1HELLO.
AUTHOR. Tiny Sparks.
* Setup the procedure division (like 'main' function)
PROCEDURE DIVISION.
* print a string
DISPLAY 'HELLO WORLD!! By Tiny Sparks'.
* end our program
STOP RUN.