mirror of
https://github.com/GnoConsortium/gno.git
synced 2025-01-08 02:30:45 +00:00
ddb82cb2e0
Maybe someday I'll become adept at using cvs...
5 lines
150 B
Awk
5 lines
150 B
Awk
$3 > maxpop { maxpop = $3; country = $1 }
|
|
END { print "country with largest population:",
|
|
country, maxpop
|
|
}
|