Torsten
6b1c316f04
fiddled with run numbers a bit recording times with noop removed results slightly worse than hoped
9 lines
75 B
Go
9 lines
75 B
Go
package main
|
|
|
|
func main() {
|
|
sum := 1
|
|
for sum < 1000000 {
|
|
sum += 1
|
|
}
|
|
}
|