9 lines
128 B
Lua
9 lines
128 B
Lua
local M = {}
|
|
function M.title(target, text)
|
|
target.setCursorPos(1, 1)
|
|
target.clearLine()
|
|
target.write(text)
|
|
end
|
|
return M
|
|
|