Files
moxa/_test/switch29.go
2020-03-25 12:40:04 +01:00

15 lines
125 B
Go

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