Skip to content

Instantly share code, notes, and snippets.

View rickardlindberg's full-sized avatar

Rickard Lindberg rickardlindberg

View GitHub Profile
@raek
raek / AST.hs
Created July 6, 2012 18:11
Continuation Language
module AST where
import Data.Map(Map)
type Id = String
data Abs = Abs { formals :: [Id],
defs :: Map Id Abs,
app :: [Term] }