improved the naming rule

This commit is contained in:
2009-06-29 07:41:47 +00:00
parent 3c63104bf7
commit 14b0bca55c
4 changed files with 60 additions and 21 deletions

View File

@ -1,7 +1,12 @@
function a (a) { print a; }
function x (y) { print y; }
function a (x) { print x; }
BEGIN {
local a;
a = 20;
a (1000);
a (1000);
{
local a;
print a;
}
}