Files
yaegi/_test/switch30.go
T

17 lines
158 B
Go

package main
func main() {
a := 3
switch a {
default:
//println("default")
case 3:
println("three")
}
println("bye")
}
// Output:
// three
// bye