RosettaCodeData/Task/Literals-Integer/Efene/literals-integer.efene
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07: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])
}