mirror of
https://github.com/traefik/yaegi.git
synced 2026-06-01 18:37:56 +00:00
14 lines
136 B
Go
14 lines
136 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
users := make(map[string]string)
|
|
|
|
v := users["a"]
|
|
fmt.Println("v:", v)
|
|
}
|
|
|
|
// Output:
|
|
// v:
|