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