/
niceSOFT
/
gawk
Обзор
Документация
Войти
/
niceSOFT
/
gawk
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/typeof1.awk
9 строк
197 B
Arnold D. Robbins
Restore typed regexp code in a new branch.
03 авг 2016, 21:38
03 авг 2016, 21:38
f591d30
Код
Авторство
О чём код?
BEGIN { a = 5 ; print typeof(a) print typeof(b) print typeof(@/foo/) c = "foo" ; print typeof(c) d[1] = 1 ; print typeof(d), typeof(d[1]) e = @/foo/ ; print typeof(e) print typeof(@/bar/) }