xref: /freebsd/contrib/one-true-awk/testdir/p.42 (revision b2d2a78ad80ec68d4a17f5aef97d21686cb1e29b)
1/Asia/		{ pop["Asia"] += $3 }
2/Africa/	{ pop["Africa"] += $3 }
3END		{ print "Asian population in millions is", pop["Asia"]
4		  print "African population in millions is", pop["Africa"] }
5