write-you-a-haskell/chapter4/untyped
2015-12-10 10:55:42 -05:00
..
Eval.hs initial commit 2015-01-05 02:54:15 -05:00
Main.hs initial commit 2015-01-05 02:54:15 -05:00
Parser.hs initial commit 2015-01-05 02:54:15 -05:00
Pretty.hs initial commit 2015-01-05 02:54:15 -05:00
README.md bump lambda calculus examples 2015-12-10 10:55:42 -05:00
Setup.hs initial commit 2015-01-05 02:54:15 -05:00
stack.yaml bump lambda calculus examples 2015-12-10 10:55:42 -05:00
Syntax.hs initial commit 2015-01-05 02:54:15 -05:00
untyped.cabal bump lambda calculus examples 2015-12-10 10:55:42 -05:00

Untyped Lambda Calculus

Untyped lambda calculus.

To compile and run:

$ cabal run

Example

Untyped> (\x. x) 1
 => \x . x
 => 1
 => x
1

License

Released under MIT license.