Files
yaegi/_test/switch32.go
T

12 lines
93 B
Go

package main
func main() {
a := 1
switch a {
}
println("bye", a)
}
// Output:
// bye 1