7 lines
69 B
Plaintext
7 lines
69 B
Plaintext
main() {
|
|
assert f(f(f(1))) == 4
|
|
}
|
|
|
|
f(x Int) -> Int {
|
|
return x + 1
|
|
} |