6 lines
74 B
Text
6 lines
74 B
Text
|
|
|
|
add : Int -> Int -> Int -> Int
|
|
add x y z = x + y + z
|
|
|
|
main = add 8 6 2
|