6 lines
89 B
Text
6 lines
89 B
Text
add : Int -> Int -> Int ;
|
|
add x = \y. x+y;
|
|
|
|
main : Int ;
|
|
main = (\z. z+z) ((add 4) 6) ;
|
|
|