erg/tests/should_ok/decimal.er
2023-07-12 16:31:39 +09:00

8 lines
78 B
Python

b = 0b010010
assert b == 18
o = 0o22
assert o == 18
h = 0x12
assert h == 18