Tree @master (Download .tar.gz)
Defs.hs @master — raw · history · blame
module Defs where type Defn = (String, Lambda) data Lambda = Var Int | Free String | Abs { var :: Int, body :: Lambda } | App { func :: Lambda, arg :: Lambda } instance Show Lambda where show (Var s) = "V"++ show s show (Free s) = s show (Abs v b) = "\\V" ++ show v ++ "." ++ show b show (App f a) = "("++show f++") "++show a |