Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 412 Bytes

README.md

File metadata and controls

20 lines (16 loc) · 412 Bytes

lambda-interpreter

Very primitive lambda interpreter.

Parser by dmringo.

With stack installed:

> git clone https://github.com/masonwr/Lambda-Interpreter.git
> cd Lambda-Interpreter
> make
> make run
stack exec lambda-interpreter-exe
Welcome to a basic lambda interpreter.
\x.y
(λx. y)
(\x.x x)(\y.y)
(λy. y)