Files
yaegi/_test/switch28.go
T

16 lines
148 B
Go

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