Quick actions

cmd+k|ctrl+k

Navigation

Languages

if, switch, goto / switch statement / Essential Go

Snippet info

Language

Go

Visibility

public

Author

kkowalczyk

Created

2019-03-26T10:14:03Z

Updated

2019-03-26T10:14:03Z

package main

import "fmt"

func main() {
	a := 1
	switch a {
	case 1:
		fmt.Printf("case 1\n")
		fallthrough
	case 2:
		fmt.Printf("caes 2\n")
	}
}
INFO