awk/testdir/t.3.x

8 lines
50 B
Plaintext
Raw Normal View History

2019-06-23 05:13:57 -04:00
{
x = $1
while (x > 1) {
print x
x = x / 10
}
}