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

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

gawk 3.1.5

File size: 140 bytes
Line 
1BEGIN {
2 foo(a)
3
4 for (i in a)
5 print i, a[i]
6}
7
8function foo(b)
9{
10 a[1] = "global"
11 b[2] = "local"
12 bar(b)
13}
14
15function bar(c)
16{
17 c = 12
18}
Note: See TracBrowser for help on using the repository browser.