Torsten
6b1c316f04
fiddled with run numbers a bit recording times with noop removed results slightly worse than hoped
13 lines
133 B
Go
13 lines
133 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
sum := 1
|
|
for sum < 10000 {
|
|
sum += 1
|
|
fmt.Println("Hi there")
|
|
}
|
|
fmt.Println(sum)
|
|
}
|