Sha256: 23051b068ce89b9369e03cf88a4e582fc12f4c5cb4aec39068e92590e431e7f2

Contents?: true

Size: 366 Bytes

Versions: 11

Compression:

Stored size: 366 Bytes

Contents

class Fib
  def fib_loop(x)
    a, b = 0, 1
    while x > 0
      a, b = b, a+b
      x -= 1
    end
    a
  end

  def fib_rec(x)
    if x <= 1
      x
    else
      fib_rec(x-1) + fib_rec(x-2)
    end
  end
end

Fib.new.fib_loop(42)
Fib.new.fib_rec(42)

__END__
# Classes
class Fib
  def fib_loop: (Integer x) -> Integer
  def fib_rec: (Integer x) -> Integer
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
typeprof-0.20.0 smoke/fib.rb
typeprof-0.15.3 smoke/fib.rb
typeprof-0.15.2 smoke/fib.rb
typeprof-0.15.1 smoke/fib.rb
typeprof-0.15.0 smoke/fib.rb
typeprof-0.14.1 smoke/fib.rb
typeprof-0.14.0 smoke/fib.rb
typeprof-0.13.0 smoke/fib.rb
typeprof-0.12.0 smoke/fib.rb
typeprof-0.11.0 smoke/fib.rb
typeprof-0.10.0 smoke/fib.rb