Sfoglia il codice sorgente

clean up print tabbing

master
XeonSquared 9 mesi fa
parent
commit
e20123b527
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      module/io.lua

+ 1
- 1
module/io.lua Vedi File

@@ -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…
Annulla
Salva