*** empty log message ***

This commit is contained in:
2006-11-19 07:45:46 +00:00
parent 635912a61b
commit b96d5d93f4
29 changed files with 308 additions and 30 deletions

12
ase/test/awk/emp-025.out Normal file
View File

@ -0,0 +1,12 @@
($2 > 6) {
n = (n + 1);
pay = (pay + ($2 * $3));
}
END {
if ((n > 0))
print n,"employees, total pay is",pay,"average pay is",(pay / n);
else
print "no employees are paid more than $6/hour";
}
no employees are paid more than $6/hour