source: vendor/gawk/3.1.5/test/arryref4.awk@ 3076

Last change on this file since 3076 was 3076, checked in by bird, 19 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.