Go语言并发编程

Go 语言的并发模型基于 CSP…

Goroutine 基础

go func() {
    fmt.Println("Hello from goroutine")
}()