Skip to content

Instantly share code, notes, and snippets.

@kinshuk4
Created August 21, 2016 10:26
Show Gist options
  • Save kinshuk4/f49c7befddbe6d230d98c2bb0d0e3a30 to your computer and use it in GitHub Desktop.
Save kinshuk4/f49c7befddbe6d230d98c2bb0d0e3a30 to your computer and use it in GitHub Desktop.
package main
func main() {
t3s := map[string]string{
"Krillin": "Human",
"Gohan": "Saiyan",
"Dende": "Namekian",
}
for name, race := range t3s {
println(name + " is a " + race)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment