mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-18 19:09:31 +00:00
ddb82cb2e0
Maybe someday I'll become adept at using cvs...
5 lines
166 B
Awk
5 lines
166 B
Awk
$4 == "Asia" { pop = pop + $3; n = n + 1 }
|
|
END { print "Total population of the", n,
|
|
"Asian countries is", pop, "million."
|
|
}
|