Skip to content

Instantly share code, notes, and snippets.

@mooreniemi
Created December 18, 2013 18:49
Show Gist options
  • Save mooreniemi/8027653 to your computer and use it in GitHub Desktop.
Save mooreniemi/8027653 to your computer and use it in GitHub Desktop.
def good_fact(x)
def fact_tail(x,sum)
if x == 0
return sum
else
fact_tail(x-1,x*sum)
end
end
fact_tail(x,1)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment