Skip to content

Instantly share code, notes, and snippets.

@nikita8
Created November 13, 2018 04:57
Show Gist options
  • Save nikita8/a9822f427916a54dbc53bc477f8ad513 to your computer and use it in GitHub Desktop.
Save nikita8/a9822f427916a54dbc53bc477f8ad513 to your computer and use it in GitHub Desktop.
Each loop in go
// Go
kvs := map[string]string{"name": "Nikita", "lastname": "Acharya"}
for k, v := range kvs {
fmt.Printf("%s -> %s\n", k, v)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment