github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/gnovm/tests/files/switch27.gno (about)

     1  package main
     2  
     3  func main() {
     4  	// a := false
     5  	switch false {
     6  	case true:
     7  		println("true")
     8  	case false:
     9  		println("false")
    10  	}
    11  	println("bye")
    12  }
    13  
    14  // Output:
    15  // false
    16  // bye