Skip to content

Instantly share code, notes, and snippets.

@nefftd
Created April 28, 2014 20:17
Show Gist options
  • Save nefftd/11382819 to your computer and use it in GitHub Desktop.
Save nefftd/11382819 to your computer and use it in GitHub Desktop.
do
local function _tsa(n,a,...)
if n > 0 then
return tostring(a),_tsa(n-1,...)
end
end
function tostringall(...)
local n = select('#',...)
if n > 0 then
return _tsa(n,...)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment