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