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

@ -10,8 +10,8 @@ func fib(n uint) uint {
func main() {
sum := 1
for sum < 100000 {
for sum < 1000 {
sum += 1
fib( 10 )
fib( 20 )
}
}