xref: /freebsd/contrib/one-true-awk/testdir/t.for1 (revision 52d973f52c07b94909a6487be373c269988dc151)
1{
2	i = 1
3	for (;;) {
4		if (i > NF)
5			next
6		print i, $i
7		i++
8	}
9}
10