9 lines
70 B
Plaintext
9 lines
70 B
Plaintext
|
main() {
|
||
|
f(10)
|
||
|
}
|
||
|
|
||
|
f(new) {
|
||
|
old := new
|
||
|
new -= 1
|
||
|
assert new != old
|
||
|
}
|