Skip to content

Latest commit

 

History

History

cobol

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

COBOL Hello World

brew install gnu-cobol

  • The source code is in world.cobol
  • Compile it: cobc -c -free -x world.cobol
  • Link it: cobc -x -o HelloWorld world.o
  • Run it: ./HelloWorld