Parser: use the same syntax for functions in logic and programs
In logic, a lambda-term is written (fun (x y : int) -> term). Also, local function definitions (let f x = t1 in t2) are allowed and translated as (let f = fun x -> t1 in t2).
Please register or sign in to comment