qse/regress/awk/lang-026.awk

7 lines
67 B
Awk

BEGIN {
abc[20] = "abc";
print abc[20];
abc = 10;
print abc;
}