qse/regress/awk/lang-026.awk

7 lines
67 B
Awk
Raw Permalink Normal View History

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