*** empty log message ***

This commit is contained in:
2006-12-05 11:34:20 +00:00
parent 9147dd9e29
commit 7b5eddbc8d
11 changed files with 118 additions and 0 deletions

14
ase/test/awk/cou-025.out Normal file
View File

@ -0,0 +1,14 @@
/Asia/ {
pop["Asia"] += $3;
}
/Europe/ {
pop["Europe"] += $3;
}
END {
print "Asian population is",pop["Asia"],"million.";
print "European population is",pop["Europe"],"million.";
}
Asian population is 2173 million.
European population is 172 million.