7 lines
58 B
Plaintext

main() {
assert f(f(f(1))) == 4
}
f(x) {
return x + 1
}