------------------------------------------
-- 8進数の表示(Luarida)のサンプル octal_number_sample.lua
------------------------------------------
function main()
canvas.drawCls(color(255,255,255))
canvas.drawText("8進数の表示(Luarida)のサンプル", 0, 0, 24, color(0,0,0))
canvas.drawText(string.format("10進数の %d は、8進数で %o です。",2,2), 0, 50, 24, color(0,0,0))
canvas.drawText(string.format("10進数の %d は、8進数で %o です。",8,8), 0, 80, 24, color(0,0,0))
canvas.drawText(string.format("10進数の %d は、8進数で %o です。",256,256), 0, 110, 24, color(0,0,0))
canvas.drawText("画面タッチで終了します。", 0, 160, 24, color(0,0,0))
touch(3)
end
main()