xref: /illumos-gate/usr/src/test/util-tests/tests/awk/examples/awk/p.38 (revision b531f6d16eb39863e7bbc34773fb7ef7a282a0a2)
1{	if (maxpop < $3) {
2		maxpop = $3
3		country = $1
4	}
5}
6END	{ print country, maxpop }
7