churf/sample-programs/basic-1
2023-03-24 17:13:56 +01:00

5 lines
74 B
Text

add : Int -> Int -> Int ;
add x y = x + y;
main : Int ;
main = add 4 6 ;