Files
the-way-to-go_ZH_CN/eBook/examples/chapter_5/goto2.go
2015-03-03 12:25:25 -05:00

13 lines
249 B
Go

// compile error goto2.go:8: goto TARGET jumps over declaration of b at goto2.go:8
package main
import "fmt"
func main() {
a := 1
goto TARGET // compile error
b := 9
TARGET:
b += a
fmt.Printf("a is %v *** b is %v", a, b)
}