*** empty log message ***

This commit is contained in:
2006-11-17 07:06:53 +00:00
parent a926eb0ae7
commit 4b33fba56f
10 changed files with 80 additions and 17 deletions

4
ase/test/awk/emp-024.awk Normal file
View File

@ -0,0 +1,4 @@
{ nc = nc + length($0) + 1;
nw = nw + NF;
}
END { print NR, "lines,", nw, "words,", nc, "characters"; }