Files
qse/qse/regress/awk/lang-029.awk
hyung-hwan c2668bbe26 changed the way to handle @words.
switched global, local, reset, abort to @global, @local, @reset, @abort to avoid collision with existing awk programs
2012-11-20 14:44:43 +00:00

20 lines
125 B
Awk

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