This commit is contained in:
16
ase/cmd/awk/lang-008.awk
Normal file
16
ase/cmd/awk/lang-008.awk
Normal file
@ -0,0 +1,16 @@
|
||||
global x;
|
||||
BEGIN {
|
||||
x = 1;
|
||||
{
|
||||
local x;
|
||||
x = 2;
|
||||
{
|
||||
local x;
|
||||
x = 3;
|
||||
print x;
|
||||
}
|
||||
print x;
|
||||
}
|
||||
print x;
|
||||
}
|
||||
|
Reference in New Issue
Block a user