qse/qse/cmd/awk/err-011.awk
2008-12-21 20:30:00 +00:00

14 lines
81 B
Awk

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