source:
vendor/gawk/3.1.5/test/arryref4.awk@
3076
| Last change on this file since 3076 was 3076, checked in by , 19 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.
