7 lines
58 B
Plaintext
7 lines
58 B
Plaintext
main() {
|
|
assert f(f(f(1))) == 4
|
|
}
|
|
|
|
f(x) {
|
|
return x + 1
|
|
} |