mirror of
https://github.com/traefik/yaegi.git
synced 2026-06-01 18:37:56 +00:00
12 lines
131 B
Go
12 lines
131 B
Go
package main
|
|
|
|
func main() {
|
|
dict := map[int32]int64{13: 733}
|
|
for k, v := range dict {
|
|
println(k, v)
|
|
}
|
|
}
|
|
|
|
// Output:
|
|
// 13 733
|