awk/testdir/t.3.x

8 lines
50 B
Plaintext
Raw Normal View History

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