add go results, just cause I'm learning it

This commit is contained in:
Torsten Ruger
2015-11-27 19:54:43 +02:00
parent fa63c6db6a
commit 707c180cab
6 changed files with 76 additions and 0 deletions

12
test/bench/go/hello.go Normal file
View 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)
}