source:
trunk/essentials/sys-apps/gawk/test/shadow.awk
Last change on this file was 3076, checked in by , 18 years ago | |
---|---|
File size: 164 bytes |
Line | |
---|---|
1 | function foo() |
2 | { |
3 | print "foo" |
4 | } |
5 | |
6 | function bar(A, Z, q) |
7 | { |
8 | print "bar" |
9 | } |
10 | |
11 | function baz(C, D) |
12 | { |
13 | print "baz" |
14 | } |
15 | |
16 | BEGIN { |
17 | A = C = D = Z = y = 1 |
18 | foo() |
19 | bar() |
20 | baz() |
21 | } |
Note:
See TracBrowser
for help on using the repository browser.