add go results, just cause I'm learning it
This commit is contained in:
12
test/bench/go/hello.go
Normal file
12
test/bench/go/hello.go
Normal file
@ -0,0 +1,12 @@
|
||||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
func main() {
|
||||
sum := 1
|
||||
for sum < 100000 {
|
||||
sum += 1
|
||||
fmt.Println("Hi there")
|
||||
}
|
||||
fmt.Println(sum)
|
||||
}
|
Reference in New Issue
Block a user