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)