mirror of
https://github.com/erg-lang/erg.git
synced 2025-09-30 04:44:44 +00:00
8 lines
78 B
Python
8 lines
78 B
Python
b = 0b010010
|
|
assert b == 18
|
|
|
|
o = 0o22
|
|
assert o == 18
|
|
|
|
h = 0x12
|
|
assert h == 18
|