mirror of
https://github.com/traefik/yaegi.git
synced 2026-06-01 18:37:56 +00:00
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
|