*** empty log message ***

This commit is contained in:
2006-08-03 15:50:04 +00:00
parent aaad83e199
commit 40c5fef59c
7 changed files with 110 additions and 47 deletions

View File

@ -10,4 +10,4 @@
print /ABC/ ~ /DEF/;
}
/zzz/
/zzz/

13
ase/test/awk/t26.awk Normal file
View File

@ -0,0 +1,13 @@
function call_next ()
{
next;
}
BEGIN {
//call_next ();
}
END {
call_next ();
}