Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jfacorro/fp-interpreter-in-lisp
Interpreter for Backus's FP programming language
https://github.com/jfacorro/fp-interpreter-in-lisp
Last synced: 20 days ago
JSON representation
Interpreter for Backus's FP programming language
- Host: GitHub
- URL: https://github.com/jfacorro/fp-interpreter-in-lisp
- Owner: jfacorro
- Created: 2015-03-08T20:51:17.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2018-01-24T16:35:42.000Z (about 7 years ago)
- Last Synced: 2024-11-18T09:42:55.639Z (3 months ago)
- Language: Common Lisp
- Size: 6.95 MB
- Stars: 10
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# fp-interpreter-in-lisp
An interpreter for Backus's FP programming language.
FP (short for Function Programming) is a programming language created by John Backus to support the function-level programming paradigm. This allows eliminating named variables.
The interpreter reads, parses and evaluates FP expressions, such as function definitions, and application of an environment to a function.
This project was created for academic and educational purposes only.