ruby--ruby/sample/fact.rb

10 lines
111 B
Ruby

def fact(n)
return 1 if n == 0
f = 1
n.downto(1) do |i|
f *= i
end
f
end
puts fact(ARGV[0].to_i)