*** 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

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

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