Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sunsided/cobol-playground
Toying around with COBOL
https://github.com/sunsided/cobol-playground
cobol csv playground
Last synced: about 2 months ago
JSON representation
Toying around with COBOL
- Host: GitHub
- URL: https://github.com/sunsided/cobol-playground
- Owner: sunsided
- Created: 2024-03-02T11:52:27.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-03-02T14:25:02.000Z (12 months ago)
- Last Synced: 2024-11-09T08:23:22.043Z (3 months ago)
- Topics: cobol, csv, playground
- Language: COBOL
- Homepage:
- Size: 176 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Exploring COBOL: A playground project
[![Build COBOL programs](https://github.com/sunsided/cobol-playground/actions/workflows/build.yml/badge.svg)](https://github.com/sunsided/cobol-playground/actions/workflows/build.yml)
![]()
## Get going
Install the GnuCOBOL (`gnucobol`/`cobc`) compiler, then compile and run the examples.
### Simple Example
```shell
cobc -x hello_world.cbl
./hello_world
```Alternatively, use Make:
```shell
make run_hello_world
```### Example using a Shared Library
This is a bit more involved to build and run, so just use Make:
```shell
make run_hello_driver
```### Example reading a CSV file
This is a bit more involved to build and run, so just use Make:
```shell
make run_csv
```