delete xx.pdf

This commit is contained in:
dake
2015-11-04 11:39:52 +08:00
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@@ -46,7 +46,7 @@ func main() {
map1["Washington"] = 25 map1["Washington"] = 25
value, isPresent = map1["Beijing"] value, isPresent = map1["Beijing"]
if isPresent { if isPresent {
fmt.Printf("The value of \"Beijin\" in map1 is: %d\n", value) fmt.Printf("The value of \"Beijing\" in map1 is: %d\n", value)
} else { } else {
fmt.Printf("map1 does not contain Beijing") fmt.Printf("map1 does not contain Beijing")
} }