18 lines
188 B
Plaintext
Raw Normal View History

2025-02-22 13:58:07 +01:00
main() {
f(10)
}
f(x int) {
y := x
num := 2
x = x - num
assert x < y
x = x + num
assert x == y
x = x * num
assert x > y
x = x / num
assert x == y
x = x % num
assert x < num
}