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

14 lines
81 B
Awk

function abc (x)
{
local x;
x = 20;
print x;
abc ();
}
BEGIN {
abc ();
}