RosettaCodeData/Task/Literals-Integer/Efene/literals-integer.efene

8 lines
179 B
Plaintext

@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])
}