forked from izaya/OC-PsychOS2
clean up print tabbing
This commit is contained in:
parent
efdb01328f
commit
e20123b527
@ -34,7 +34,7 @@ end
|
|||||||
|
|
||||||
function print(...) -- Writes each argument to the default output stream, separated by space.
|
function print(...) -- Writes each argument to the default output stream, separated by space.
|
||||||
for k,v in ipairs({...}) do
|
for k,v in ipairs({...}) do
|
||||||
io.write(tostring(v).."\t")
|
io.write((k>1 and "\t" or "")..tostring(v))
|
||||||
end
|
end
|
||||||
io.write("\n")
|
io.write("\n")
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user