source:
trunk/essentials/sys-apps/gawk/test/arryref3.awk
Last change on this file was 3076, checked in by , 18 years ago | |
---|---|
File size: 140 bytes |
Line | |
---|---|
1 | BEGIN { |
2 | foo(a) |
3 | |
4 | for (i in a) |
5 | print i, a[i] |
6 | } |
7 | |
8 | function foo(b) |
9 | { |
10 | a[1] = "global" |
11 | b[2] = "local" |
12 | bar(b) |
13 | } |
14 | |
15 | function bar(c) |
16 | { |
17 | c = 12 |
18 | } |
Note:
See TracBrowser
for help on using the repository browser.