*++
*
* Program:
* HELLO_WORLD_COB
*
* Purpose:
* Hello world written in Cobol
*
* History:
* 24-Jul-1999 by Simon L. Jackson
* Initial version
*
*--
identification division.
program-id. hello_world_cob.
procedure division.
1000_main section.
1000_main_paragraph.
display "Hello world from Cobol"
exit program
stop run
.
end program hello_world_cob.