RosettaCodeData/Task/Literals-Integer/Pluto/literals-integer.pluto

5 lines
72 B
Text
Raw Permalink Normal View History

2025-08-11 18:05:26 -07:00
local n = {255, 0xff, 0o377, 0b11111111}
for n as i do
print(i)
end