RosettaCodeData/Task/Literals-Integer/Efene/literals-integer.efene
2023-07-01 13:44:08 -04:00

7 lines
179 B
Text

@public
run = fn () {
io.format("0xff : ~B~n", [0xff])
io.format("0xFF : ~B~n", [0xFF])
io.format("0o777 : ~B~n", [0o777])
io.format("0b1011: ~B~n", [0b1011])
}