gouf
5/8/2014 - 2:51 PM

my first cobol program. Ref: http://dotinstall.com/lessons/basic_cobol/27501

IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
PROCEDURE DIVISION.
      MAINSECTION.
           DISPLAY 'HELLO WORLD!'.
      STOP RUN.
#!/bin/sh

cobc -x -free hello.cob