This commit is contained in:
2007-12-24 02:11:27 +00:00
parent 2c557f097a
commit 73f73d81c6
8 changed files with 39 additions and 0 deletions

16
ase/test/awk/lang-008.awk Normal file
View File

@ -0,0 +1,16 @@
global x;
BEGIN {
x = 1;
{
local x;
x = 2;
{
local x;
x = 3;
print x;
}
print x;
}
print x;
}