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

     1  package main
     2  
     3  func main() {
     4  	i := 1
     5  
     6  	switch i {
     7  	case 1:
     8  		// nothing to do
     9  	default:
    10  		println("not run")
    11  	}
    12  	println("bye")
    13  }
    14  
    15  // Output:
    16  // bye