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