xref: /freebsd/contrib/one-true-awk/testdir/t.6 (revision a03411e84728e9b267056fd31c7d1d9d1dc1b01e)
1/a|b|c/	{
2	i = $1
3	print
4	while (i >= 1) {
5		print "	", i
6		i = i / 10
7	}
8}
9