2024-08-05 18:47:24 +02:00

7 lines
86 B
Plaintext

main() {
assert f(2, 3) == 25
}
f(x Int, y Int) -> Int {
return (x + y) * (x + y)
}