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