4.4BSD/usr/src/old/awk/test/t.for1

{
	i = 1
	for (;;) {
		if (i > NF)
			next
		print i, $i
		i++
	}
}