7 lines
56 B
Plaintext

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