Ver código fonte

clean up print tabbing

master
XeonSquared 9 meses atrás
pai
commit
e20123b527
1 arquivos alterados com 1 adições e 1 exclusões
  1. +1
    -1
      module/io.lua

+ 1
- 1
module/io.lua Ver arquivo

@@ -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

Carregando…
Cancelar
Salvar