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

16 lines
148 B
Go

package main
func main() {
switch {
case true:
println("true")
case false:
println("false")
}
println("bye")
}
// Output:
// true
// bye