Files
yaegi/_test/switch29.go
T

15 lines
125 B
Go

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