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

9
ase/test/awk/cou-024.out Normal file
View File

@ -0,0 +1,9 @@
($4 == "Asia") {
pop = (pop + $3);
n = (n + 1);
}
END {
print "Total population of the",n,"Asian countries is",pop,"million.";
}
Total population of the 4 Asian countries is 2173 million.