Browse Source

clean up print tabbing

master
Izaya 2 months ago
parent
commit
e20123b527
  1. 2
      module/io.lua

2
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…
Cancel
Save