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

     1  package main
     2  
     3  func getType() string { return "T1" }
     4  
     5  func main() {
     6  	switch getType() {
     7  	case "T1":
     8  		println("T1")
     9  	default:
    10  		println("default")
    11  	}
    12  }
    13  
    14  // Output:
    15  // T1