14 lines
77 B
Awk
Raw Normal View History

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