Skip to content

Instantly share code, notes, and snippets.

@dnasca
Created November 5, 2019 04:31
Show Gist options
  • Save dnasca/af9075fc2dff40d2131f9ee605226787 to your computer and use it in GitHub Desktop.
Save dnasca/af9075fc2dff40d2131f9ee605226787 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