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

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

gawk 3.1.5

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