Skip to content

Instantly share code, notes, and snippets.

@nefftd
Created July 14, 2014 02:15
Show Gist options
  • Save nefftd/db020d24e4bc5d71408f to your computer and use it in GitHub Desktop.
Save nefftd/db020d24e4bc5d71408f to your computer and use it in GitHub Desktop.
local function writeout(n,a,...)
if n > 0 then
io.stdout:write(a,'\t')
return writeout(n-1,...)
end
end
function print(...)
local n = select('#',...)
if n > 0 then
writeout(n,...)
io.stdout:write('\n')
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment