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