This commit is contained in:
Unknown
2013-04-11 19:07:26 -04:00
parent f03dde511f
commit 8bbe8ee7df
8 changed files with 189 additions and 11 deletions

View File

@@ -0,0 +1,7 @@
// hello_world1.go
package main
func main() {
println("Hello", "world")
}

View File

@@ -0,0 +1,12 @@
package main
import (
"fmt"
"runtime"
)
func main() {
fmt.Printf("%s", runtime.Version())
}
// Output:
// go1.0.3 or go 1.1