浏览代码

clean up print tabbing

master
XeonSquared 9 个月前
父节点
当前提交
e20123b527
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      module/io.lua

+ 1
- 1
module/io.lua 查看文件

@@ -34,7 +34,7 @@ end

function print(...) -- Writes each argument to the default output stream, separated by space.
for k,v in ipairs({...}) do
io.write(tostring(v).."\t")
io.write((k>1 and "\t" or "")..tostring(v))
end
io.write("\n")
end

正在加载...
取消
保存