Explorar el Código

clean up print tabbing

master
XeonSquared hace 9 meses
padre
commit
e20123b527
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      module/io.lua

+ 1
- 1
module/io.lua Ver fichero

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

Cargando…
Cancelar
Guardar