zhangzqs / Zhangzqs.github.io

我的主页
2 stars 0 forks source link

Golang工程实践 | Zhangzqs #74

Open zhangzqs opened 2 years ago

zhangzqs commented 2 years ago

https://zhangzqs.cn/posts/823d/

Goroutine 12345678910111213141516171819202122package mainimport ( "fmt" "time")func hello(i int) { fmt.Printf("hello goroutine: %d\n", i)}func HelloGo