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