Skip to content

Instantly share code, notes, and snippets.

@chirantan
Created June 27, 2011 05:46
Show Gist options
  • Save chirantan/1048368 to your computer and use it in GitHub Desktop.
Save chirantan/1048368 to your computer and use it in GitHub Desktop.
Factorial Program
class Fixnum
def factorial
self > 1 ? (self * (self - 1).factorial) : 1
end
end
puts 5.factorial
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment