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

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