Skip to content

Instantly share code, notes, and snippets.

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