add Go lang examples

This commit is contained in:
Juraj Michalek
2016-05-16 10:15:04 +02:00
parent 5fac352622
commit d7699815cc
3 changed files with 141 additions and 0 deletions

8
golang/01-hello/hello.go Normal file
View File

@@ -0,0 +1,8 @@
package main
import "fmt"
func main() {
fmt.Println("Hello, 世界")
}