Skip to content

Instantly share code, notes, and snippets.

@parvezmrobin
Created October 20, 2019 18:33
Show Gist options
  • Save parvezmrobin/b6e27dab576d9c7c68e600ad8ccd5469 to your computer and use it in GitHub Desktop.
Save parvezmrobin/b6e27dab576d9c7c68e600ad8ccd5469 to your computer and use it in GitHub Desktop.
package main
func main() {
var marks = map[string]int{
"sakeef": 95,
"oishie": 82,
"robin": 61,
"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