mirror of
https://github.com/traefik/yaegi.git
synced 2026-06-01 18:37:56 +00:00
12 lines
93 B
Go
12 lines
93 B
Go
package main
|
|
|
|
func main() {
|
|
a := 1
|
|
switch a {
|
|
}
|
|
println("bye", a)
|
|
}
|
|
|
|
// Output:
|
|
// bye 1
|