DEBSOURCES
Skip Quicknav
sources / golang-github-traefik-yaegi / 0.16.1-2 / _test / switch29.go
1234567891011121314
package main func main() { a := 3 switch a { case 3: println("three") } println("bye") } // Output: // three // bye