rubyx/test/bench/go/adds.go
Torsten 00bf38a0e6 updating benchmarks
on the new machine, consistent
not rubyx yet
2019-07-23 20:14:28 +03:00

26 lines
267 B
Go

package main
func fibo(n int ) int {
result := 0
a := 0
b := 1
i := 1
for( i < n ) {
result = a + b;
a = b;
b = result;
i++;
}
return result
}
func main() {
sum := 1
for sum < 100000 {
sum += 1
fibo( 20 )
}
}