package main import "fmt" func main() { for i := 1; i <= 3; i++ { if i == 2 { return } fmt.Println(i) } } // 1
← goto(跳转到指定的标签) 普通函数-函数声明(函数定义使用)→