q/tests/programs/modulo-assign.q
2024-07-28 18:12:42 +02:00

8 lines
No EOL
71 B
Text

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