q/tests/programs/modulo-assign.q

8 lines
No EOL
71 B
Text

main() {
x := 256
x %= 100
assert x == 56
x %= 10
assert x == 6
}