Created
July 14, 2014 02:15
-
-
Save nefftd/db020d24e4bc5d71408f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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