Files
moxa/_test/switch20.go
2019-07-11 14:02:59 +02:00

17 lines
148 B
Go

package main
func main() {
i := 1
switch i {
case 1:
// nothing to do
default:
println("not run")
}
println("bye")
}
// Output:
// bye