qse/regress/awk/lang-052.awk

5 lines
73 B
Awk

BEGIN {
split ("a b c d e", ARGV);
for (i in ARGV) print i, ARGV[i];
}