rubyx/test/bench/ruby/calls.rb
Torsten 8eb0ba0d81 fix benchmarks
up to 20 recursive fibo
had mixed add and calls for rubyx
2019-07-30 21:16:24 +03:00

17 lines
186 B
Ruby

def fibo_r( n )
if( n < 2 )
return n
else
return fibo_r(n - 1) + fibo_r(n - 2)
end
end
counter = 100
while(counter > 0) do
fibo_r(20)
counter -= 1
end