Skip to content

Instantly share code, notes, and snippets.

@parvezmrobin
Created October 20, 2019 18:03
Show Gist options
  • Save parvezmrobin/5e48bacb8559238b9eb3c12a5e2e8b05 to your computer and use it in GitHub Desktop.
Save parvezmrobin/5e48bacb8559238b9eb3c12a5e2e8b05 to your computer and use it in GitHub Desktop.
package main
func main() {
var marks = map[string]int{}
marks["sakeef"] = 95
marks["oishie"] = 82
marks["robin"] = 61
marks["mim"] = 43
println(marks["sakeef"], marks["oishie"], marks["robin"], marks["mim"])
// 95 82 61 43
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment