Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 272 Bytes

File metadata and controls

18 lines (15 loc) · 272 Bytes

programming-language-foundations

Programming Language Foundations (Stump 2013)

Run with:

stack build && stack exec pfl-exe

Example output:

5.8.1-1a. Syntax tree of: (λx.(λy.x y)) =
    λ
   / \
  x   λ
     / \
    y   @
       / \
      x   y