From bc70de7b3302d5a81515b901cae376b8b51d2004 Mon Sep 17 00:00:00 2001 From: "Arnold D. Robbins" Date: Fri, 16 Jul 2010 13:09:56 +0300 Subject: Move to gawk-3.1.0. --- test/shadow.awk | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 test/shadow.awk (limited to 'test/shadow.awk') diff --git a/test/shadow.awk b/test/shadow.awk new file mode 100644 index 00000000..9a587203 --- /dev/null +++ b/test/shadow.awk @@ -0,0 +1,21 @@ +function foo() +{ + print "foo" +} + +function bar(A, Z, q) +{ + print "bar" +} + +function baz(C, D) +{ + print "baz" +} + +BEGIN { + A = C = D = Z = y = 1 + foo() + bar() + baz() +} -- cgit v1.2.3