3 lines
86 B
Text
3 lines
86 B
Text
|
let succ : int -> int = (\ (x : int) -> x + 1 : int -> int)
|
||
|
|
||
|
let main : int = succ (0)
|