Created
May 11, 2016 15:09
-
-
Save yanmhlv/b6388947826e78d620cc560d43f9c5da to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import "fmt" | |
func main() { | |
mydict := map[string]int{ | |
"1": 1, | |
"2": 2, | |
"3": 3, | |
} | |
for i := 0; i < 10; i++ { | |
for k := range mydict { | |
fmt.Println(k) | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment