代码示例:(标识:6525131c4a02e)
package main

import (
	"fmt"
)

func hello() {
	fmt.Println("hello")
}

func main() {
	go hello()
	fmt.Println("欢迎来到搜寻编程教程")
}
运行结果: