You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/Asia/ { pop["Asia"] += $3 }
|
|
/Africa/ { pop["Africa"] += $3 }
|
|
END { print "Asian population in millions is", pop["Asia"]
|
|
print "African population in millions is", pop["Africa"] }
|