Skip to content

Instantly share code, notes, and snippets.

@raichoo
Created March 30, 2017 20:54
Show Gist options
  • Save raichoo/b60777794961fb84f19d693aacc293d2 to your computer and use it in GitHub Desktop.
Save raichoo/b60777794961fb84f19d693aacc293d2 to your computer and use it in GitHub Desktop.
function f (x)
print("f: " .. x)
return g (x + 1)
end
function g (x)
print("g: " .. x)
return f (x + 1)
end
f(0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment