Created
October 20, 2019 18:33
-
-
Save parvezmrobin/b6e27dab576d9c7c68e600ad8ccd5469 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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