Last Modified: 2017-08-23 11:46:10
Hard to say, I finished Go, for about 20 days (except busy for 1 week and training for 1 week).
Such a long time, 1 week to learn a new language, having known a little about concurrency.
Not so bad.
AcknowledgeGo is a new language. Although it borrows ideas from existing languages, it has unusual properties that make effective Go programs different in character from programs written in its relatives.The notes below was written from the view of a CPP programmer.
and a hello world
package main
import "fmt"
func main() {
fmt.Println("Hello, World")
}
Read more