Setup recommended golang environment

This commit is contained in:
Darren Coxall
2013-05-02 08:46:45 +01:00
parent 7f58e1e8d0
commit 30632f4aad
7 changed files with 52 additions and 0 deletions

7
src/hello/hello.go Normal file
View File

@@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Printf("hello, world\n")
}