You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
BEGIN {
|
|
x["apple"] = 1;
|
|
x["orange"] = 2;
|
|
x["lemon"] = 3;
|
|
for (i in x)
|
|
print i, x[i] | "sort"
|
|
close("sort")
|
|
exit
|
|
}
|