mirror of
https://github.com/opnsense/src.git
synced 2026-03-13 06:02:46 -04:00
14 lines
198 B
Awk
14 lines
198 B
Awk
|
|
BEGIN { # foo[10] = 0 # put this line in and it will work
|
||
|
|
test(foo); print foo[1]
|
||
|
|
test2(foo2); print foo2[1]
|
||
|
|
}
|
||
|
|
|
||
|
|
function test(foo)
|
||
|
|
{
|
||
|
|
test2(foo)
|
||
|
|
}
|
||
|
|
function test2(bar)
|
||
|
|
{
|
||
|
|
bar[1] = 1
|
||
|
|
}
|