sunsided / cobol-playground

Toying around with COBOL

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Exploring COBOL: A playground project

Build COBOL programs

Dinosaurs programming COBOL

Get going

Install the GnuCOBOL (gnucobol/cobc) compiler, then compile and run the examples.

Simple Example

cobc -x hello_world.cbl
./hello_world

Alternatively, use Make:

make run_hello_world

Example using a Shared Library

This is a bit more involved to build and run, so just use Make:

make run_hello_driver

Example reading a CSV file

This is a bit more involved to build and run, so just use Make:

make run_csv

About

Toying around with COBOL


Languages

Language:COBOL 58.2%Language:Makefile 41.8%