*** empty log message ***

This commit is contained in:
2006-11-17 06:51:28 +00:00
parent c98f616c82
commit a926eb0ae7
21 changed files with 57 additions and 24 deletions

5
ase/test/awk/emp-015.awk Normal file
View File

@ -0,0 +1,5 @@
NF != 3 { print $0, "number of fields is not equal to 3"; }
$2 < 3.35 { print $0, "rate is below minimum wage"; }
$2 > 10 { print $0, "rate exceeds $10 per hour"; }
$3 < 0 { print $0, "negative hours worked"; }
$3 > 60 { print $0, "too many hours worked"; }