gitlab.com/ethan.reesor/vscode-notebooks/yaegi@v0.0.0-20220417214422-5c573557938e/_test/switch10.go (about) 1 package main 2 3 func main() { 4 var i interface{} = "truc" 5 6 switch a := i.(type) { 7 case string: 8 println("string", a+" ok") 9 default: 10 println("unknown") 11 } 12 } 13 14 // Output: 15 // string truc ok