Skip to content

Instantly share code, notes, and snippets.

@diegodfsd
Created July 8, 2011 01:05
Show Gist options
  • Save diegodfsd/1070891 to your computer and use it in GitHub Desktop.
Save diegodfsd/1070891 to your computer and use it in GitHub Desktop.
def fatorial(n)
n.zero?? 1 : n * fatorial(n-1)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment