5 lines
74 B
Text
5 lines
74 B
Text
add : Int -> Int -> Int ;
|
|
add x y = x + y;
|
|
|
|
main : Int ;
|
|
main = add 4 6 ;
|