summaryrefslogtreecommitdiff
path: root/sample/fact.rb
blob: 49678bc9d00aa4a0b476c2471215d2153553ed1e (plain)
1
2
3
4
5
6
7
8
def fact(n)
  if n == 0
    1
  else
    n * fact(n-1)
  end
end
print fact(ARGV[0].to_i), "\n"