合规国际互联网加速 OSASE为企业客户提供高速稳定SD-WAN国际加速解决方案。 广告
``` func main() { go sing() go dance() for{ ; } } func sing() { for i:=0; i<20;i++ { fmt.Println("sing......") time.Sleep(100 * time.Microsecond) } } func dance() { for i:=0; i<20;i++ { fmt.Println("dance......") time.Sleep(100 * time.Microsecond) } } ```