Object
# File typeprof-0.12.0/smoke/fib.rb, line 2 def fib_loop(x) a, b = 0, 1 while x > 0 a, b = b, a+b x -= 1 end a end
# File typeprof-0.12.0/smoke/fib.rb, line 11 def fib_rec(x) if x <= 1 x else fib_rec(x-1) + fib_rec(x-2) end end
This page was generated for Ruby 3.0.1
Ruby-doc.org is a service of James Britt and Neurogami, purveyors of fine dance noise.
Generated with Ruby-doc Rdoc Generator 0.44.2.