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