mirror of
https://github.com/CCLeonOS/LeonOS.git
synced 2026-03-03 15:17:01 +00:00
14 lines
213 B
Lua
14 lines
213 B
Lua
|
|
_G.io = require("rc.io")
|
||
|
|
|
||
|
|
function _G.print(...)
|
||
|
|
local args = table.pack(...)
|
||
|
|
|
||
|
|
for i=1, args.n, 1 do
|
||
|
|
args[i] = tostring(args[i])
|
||
|
|
end
|
||
|
|
|
||
|
|
io.stdout:write(table.concat(args, "\t"), "\n")
|
||
|
|
|
||
|
|
return true
|
||
|
|
end
|