Files
opus-apps/ignore/chars.lua
kepler155c@gmail.com e264d98739 cleanup
2019-01-27 00:27:05 -05:00

16 lines
225 B
Lua

local w, h = term.getSize()
term.clear()
term.setCursorPos(1, 1)
local t = { }
for i = 1, 8 do
table.insert(t, '---')
end
for i = 1, 255 do
table.insert(t, string.format('%d %c', i, i))
end
textutils.pagedTabulate(t)