rubyx/test/bench/go/hello.go

13 lines
133 B
Go
Raw Normal View History

package main
import "fmt"
func main() {
sum := 1
for sum < 10000 {
sum += 1
fmt.Println("Hi there")
}
fmt.Println(sum)
}