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

8 lines
179 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
@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])
}