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

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