xref: /aosp_15_r20/external/one-true-awk/testdir/p.42 (revision 9a7741de182b2776d7b30d6355f2585c0780a51b)
1*9a7741deSElliott Hughes/Asia/		{ pop["Asia"] += $3 }
2*9a7741deSElliott Hughes/Africa/	{ pop["Africa"] += $3 }
3*9a7741deSElliott HughesEND		{ print "Asian population in millions is", pop["Asia"]
4*9a7741deSElliott Hughes		  print "African population in millions is", pop["Africa"] }
5