go
xiaoxinyu316
每天进步一点点。
展开
-
Golang study
Useful URLhttps://golang.org/https://play.golang.org/https://atom.io/https://github.com/nsf/gocode原创 2018-06-13 09:11:06 · 234 阅读 · 0 评论 -
goroutine
package main import ( "fmt" "time" "sync" ) func main() { var waitGrp sync.WaitGroup waitGrp.Add(2) go func() { defer waitGrp.Done() time.Sleep(5 * time.Seco...原创 2018-07-04 09:00:58 · 193 阅读 · 0 评论