Skip to content

Instantly share code, notes, and snippets.

@zahodi
Created September 28, 2015 05:06
Show Gist options
  • Save zahodi/9254afb5c6b5862c45a0 to your computer and use it in GitHub Desktop.
Save zahodi/9254afb5c6b5862c45a0 to your computer and use it in GitHub Desktop.
factorial
#!/usr/bin/env ruby
def countdown(n)
if n == 0
1
else
n*countdown(n-1)
end
end
puts countdown(5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment