source: trunk/essentials/sys-apps/gawk/test/shadow.awk

Last change on this file was 3076, checked in by bird, 18 years ago

gawk 3.1.5

File size: 164 bytes
Line 
1function foo()
2{
3 print "foo"
4}
5
6function bar(A, Z, q)
7{
8 print "bar"
9}
10
11function baz(C, D)
12{
13 print "baz"
14}
15
16BEGIN {
17 A = C = D = Z = y = 1
18 foo()
19 bar()
20 baz()
21}
Note: See TracBrowser for help on using the repository browser.