合规国际互联网加速 OSASE为企业客户提供高速稳定SD-WAN国际加速解决方案。 广告
### goto跳转 > **goto 标签** ``` package main import "fmt" func main() { fmt.Println("Hello") goto sign fmt.Println("标签之间无效代码") sign: fmt.Println("World") fmt.Println("标签外有效代码") } 结果: Hello World 标签外有效代码 ```