Go语言快速入门

一年前为了给同事介绍Go而做的演讲文稿。一年过去,我对Go的理解没有任何进展。 最近决定深入地学习这门语言。 Hello World package main import "fmt" // this is a comment func main() { fmt.Println("Hello World") }