https://github.com/lauryndbrown/Cisp
A Common Lisp Interpreter Built in COBOL
https://github.com/lauryndbrown/Cisp
cobol cobol-programs gnu-cobol lisp lisp-interpreter
Last synced: 3 months ago
JSON representation
A Common Lisp Interpreter Built in COBOL
- Host: GitHub
- URL: https://github.com/lauryndbrown/Cisp
- Owner: lauryndbrown
- License: mit
- Created: 2017-04-16T02:03:23.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-28T22:22:33.000Z (about 8 years ago)
- Last Synced: 2024-10-28T05:12:38.623Z (7 months ago)
- Topics: cobol, cobol-programs, gnu-cobol, lisp, lisp-interpreter
- Language: COBOL
- Size: 5.27 MB
- Stars: 133
- Watchers: 10
- Forks: 9
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-lisp-family - Cisp - commit](https://img.shields.io/github/last-commit/lauryndbrown/Cisp.svg)](https://github.com/lauryndbrown/Cisp) | L | | (Languages / Cobol)
README
# Cisp
A Common Lisp Interpreter Built in COBOL.## Overview
### Purpose
This is a small project built by a student at the Recurse Center to express a love for COBOL and better understand it.Due to COBOL's lack of functions and recursion, the recursion required for Lisp is built from the ground up using file processing. Also, due to the lack of a widely supported debugger, a system logger was also implemented.
### Compatibility
Please note that Cisp is currently only actively developed for Windows. \*Nix users may experience issues.### Functionality
All features are currently in development. This is a list of what is to come.
- Representation of Symbols and Numbers 
- Basic Arithmetic 
- Flow-Control Statements 
- Lists 
### Notes
The README much like the entire project is in current development.## Running Cisp
### Hello World
1. Make a subdirectory for your lisp file.
```cmd
mkdir test\helloworld
```
2. Create a new file `helloworld.lisp` in your subdirectory containing the following:
```lisp
(print "HelloWorld!")
```
3. To run Cisp cd into the bin (Note that you must cd in)```cmd
cd bin
```
4. Run Cisp```cmd
cisp.exe ..\test\helloworld\helloworld.lisp
```### Project Structure
Currently the COBOL source files are located in the root directory.
#### Directories
* bin - Contains all necessary \*.dll's (windows users) for those who want to play with CISP without changing the code. This is due to the fact that so few people have COBOL compilers.
* logs - Contains the log file generated by the system.
* test - Contains all test files organized by subject.
#### COBOL Files
* cisp.cbl - The main COBOL program.
* cisp-error.cbl - The Error System in the program. It will "throw" errors when called.
* lisp.cbl - Responsible for executing the lisp program.
* logger.cbl - The Logging System in the program. It will log events in the system when called.
* recursion.cbl - Handles recursion as requested from lisp.cbl.
* tokenizer.cbl - Responsible for tokenizing the lisp file given to execute.### Compiling
The easiest way I have found to compile COBOL is [GNU's COBOL compilier](https://sourceforge.net/projects/open-cobol/). For those who prefer IDE's I have found [Open COBOL IDE](http://opencobolide.readthedocs.io/en/latest/download.html) to be very helpful.
### Running Tests
#### Windows
To run all tests in the project, double click `bin\cisp.bat`
To run a single test:
`cd bin`
`cisp.exe ..\test\test_subdirectory\test_name.lisp`
#### Create your own Lisp Files for Testing
1. Create a directory in `test\` to create another test category.
2. In your subdirectory create a lisp file.
3. `cd bin`
4. `cisp.exe ..\test\test_subdirectory\test_name.lisp`
#### Linux
Instructions yet to come. The author is a window's user, and \*nix systems are not currently supported.
A high level overview is to compile the project and run the executable in the bin folder.
## Developing Cisp
### How Cisp Works
### Log to Log File
Coming soon.
### Throw an Error
Coming soon.