xref: /freebsd/contrib/one-true-awk/testdir/p.39 (revision 9768746b)
1{	i = 1
2	while (i <= NF) {
3		print $i
4		i++
5	}
6}
7