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