Answers for "simple hello world cobol program"

0

hello world in cobol

$ vim helloworld

IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO-WORLD.
* simple hello world program
PROCEDURE DIVISION.
    DISPLAY 'Hello world!'.
    STOP RUN.
Posted by: Guest on January-29-2020

Code answers related to "simple hello world cobol program"

Browse Popular Code Answers by Language