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

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