Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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.