qse/qse/regress/awk/lang-008.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

22 lines
174 B
Awk

#
# a local variable can shade a global variable
#
@global x;
BEGIN {
x = 1;
{
@local x;
x = 2;
{
@local x;
x = 3;
print x;
}
print x;
}
print x;
}