Skip to main content

Hello World Program

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