/
niceSOFT
/
gawk
Обзор
Документация
Войти
/
niceSOFT
/
gawk
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/typeof2.awk
20 строк
191 B
Arnold D. Robbins
Fix typeof to not change untyped param to scalar.
21 июн 2015, 22:03
21 июн 2015, 22:03
f57f069
Код
Авторство
О чём код?
BEGIN { print typeof(x) x[1] = 3 print typeof(x) } function test1() { } function test2(p) { p[1] = 1 } BEGIN { print typeof(a) test1(a) print typeof(a) test2(a) print typeof(a) }