this.isMin.uk


GOTO문은 하나의 함수 안에서만 사용이 가능하다

func main() {

dest1:
	fmt.Println("Hello, playground")
	goto dest1
	
// goto dest2 -> dest2 not defined error
}

func x() {
// dest2: -> dest2 defined and not used error
return 
}
Golang, Til