8 lines
71 B
Plaintext
Raw Normal View History

2024-07-28 16:12:42 +00:00
main() {
x := 256
x %= 100
assert x == 56
x %= 10
assert x == 6
}