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-26T09:40:38Z

Updated

2019-03-26T09:40:38Z

package main

import "fmt"

func main() {
	s := "foo"
	switch s {
	case "foo":
		fmt.Printf("s is 'foo'\n")
	case "bar":
		fmt.Printf("s is 'bar'\n")
	}
}
INFO