xref: /freebsd/contrib/one-true-awk/testdir/p.38 (revision d11f81afd5a4a71d5f725950b0592ca212084780)
1{	if (maxpop < $3) {
2		maxpop = $3
3		country = $1
4	}
5}
6END	{ print country, maxpop }
7