7 lines
71 B
Plaintext

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