Quick actions

cmd+k|ctrl+k

Navigation

Languages

if, switch, goto / goto statements / Essential Go

Snippet info

Language

Go

Visibility

public

Author

kkowalczyk

Created

2019-03-26T09:40:47Z

Updated

2019-03-26T09:40:47Z

package main

import "fmt"

func main() {
	goto end
	a := 3
	fmt.Printf("a: %d\n", a)
end:
}
INFO