/
githubmirror
/
gawk
Обзор
Документация
Войти
/
githubmirror
/
gawk
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/arrayref.awk
13 строк
198 B
Arnold D. Robbins
Move to gawk-3.0.0.
16 июл 2010, 13:41
16 июл 2010, 13:41
8c042f9
Код
Авторство
О чём код?
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 }