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