17 lines
169 B
Go
17 lines
169 B
Go
package main
|
|
|
|
func main() {
|
|
//a := false
|
|
switch false {
|
|
case true:
|
|
println("true")
|
|
case false:
|
|
println("false")
|
|
}
|
|
println("bye")
|
|
}
|
|
|
|
// Output:
|
|
// false
|
|
// bye
|