qse/ase/cmd/awk/t26.awk
2008-03-21 03:49:53 +00:00

14 lines
85 B
Awk

function call_next ()
{
next;
}
BEGIN {
#call_next ();
}
END {
call_next ();
}