github.com/switchupcb/yaegi@v0.10.2/_test/switch5.go (about)

     1  package main
     2  
     3  func main() {
     4  	i := 1
     5  
     6  	switch i {
     7  	case 0, 1, 2:
     8  		if i == 1 {
     9  			println("one")
    10  			break
    11  		}
    12  		println(i)
    13  	default:
    14  		println("not nul")
    15  	}
    16  }
    17  
    18  // Output:
    19  // one