mirror of
https://github.com/rileyallyn/cobol-interpreter-lab.git
synced 2026-05-30 22:28:23 -07:00
a small bison based cobol interpreter for cptr354
- C++ 53.3%
- C 35.9%
- Yacc 8%
- Lex 1.7%
- Makefile 1.1%
| .github/workflows | ||
| samples | ||
| .gitignore | ||
| expr.c | ||
| expr.h | ||
| main.c | ||
| main_test.c | ||
| Makefile | ||
| parser.bison | ||
| parser_test.c | ||
| README.md | ||
| scanner.flex | ||
| scanner_test.c | ||
| symbol_map.c | ||
| symbol_map.h | ||
| token.h | ||
| utest.h | ||
COBOL Interpreter Lab
Overview
During my compilers and languages class at Walla Walla University, my group chose to make a COBOL interpreter.
This is the resulting project.
This interpreter is based on the work of Douglas Thain who created the Compiler Book