xref: /freebsd/contrib/one-true-awk/testdir/t.in (revision 2a0c0aea42092f89c2a5345991e6e3ce4cbef99a)
1BEGIN {
2	x["apple"] = 1;
3	x["orange"] = 2;
4	x["lemon"] = 3;
5	for (i in x)
6		print i, x[i] | "sort"
7	close("sort")
8	exit
9}
10