Skip to content

Instantly share code, notes, and snippets.

@dnasca
Created November 5, 2019 04:31
Show Gist options
  • Save dnasca/47ac6600424b1445817ec2acad72df82 to your computer and use it in GitHub Desktop.
Save dnasca/47ac6600424b1445817ec2acad72df82 to your computer and use it in GitHub Desktop.
tail recursion lua
local function ex1( a, ... )
if a then
print(a)
return ex1( ... )
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment