qse/ase/test/awk/t26.awk

14 lines
85 B
Awk

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