瀏覽代碼

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

Loading…
取消
儲存