gitlab.com/ethan.reesor/vscode-notebooks/yaegi@v0.0.0-20220417214422-5c573557938e/_test/switch1.go (about) 1 package main 2 3 func main() { 4 i := 1 5 6 switch i { 7 case 0: 8 println(i) 9 default: 10 println("not nul") 11 } 12 } 13 14 // Output: 15 // not nul