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