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