fix benchmarks

up to 20 recursive fibo
had mixed add and calls for rubyx
This commit is contained in:
2019-07-30 21:16:24 +03:00
parent 6273ab769c
commit 8eb0ba0d81
6 changed files with 36 additions and 38 deletions

View File

@ -8,9 +8,9 @@ def fibo_r( n )
end
counter = 10000
counter = 100
while(counter > 0) do
fibo_r(10)
fibo_r(20)
counter -= 1
end