package
0.0.0-20240927162453-5db3958d3114
Repository: https://github.com/tej-singh-rana/golang.git
Documentation: pkg.go.dev

# README

GOTO Statement

Sample Code

func main() {
	// goto statement

	goto newLabel

newLabel:
	 < Code Block >
   
}