func main() { a := 1 switch a { case 0: fmt.Println(0) case 1: fmt.Println(1) case 2: fmt.Println(2) }}