/
niceSOFT
/
gawk
Обзор
Документация
Войти
/
niceSOFT
/
gawk
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/mdim1.awk
17 строк
397 B
Arnold D. Robbins
Fix elem_new_to_scalar.
19 июн 2026, 06:10
19 июн 2026, 06:10
e062a11
Код
Авторство
О чём код?
BEGIN { print "typeof(y) is", typeof(y) z = y print "typeof(y) is", typeof(y) print "typeof(z) is", typeof(z) print "typeof(x[0]) is", typeof(x[0]) x[1] = x[0] print "typeof(x[0]) is", typeof(x[0]) print "typeof(x[1]) is", typeof(x[1]) x[2][1] = "xx" print "typeof(x[2]) is", typeof(x[2]) print "typeof(x[2][1]) is", typeof(x[2][1]) x[1][0] = "xx" # this will fatal print x[1][0] }