6 lines
101 B
Awk
6 lines
101 B
Awk
BEGIN {
|
|
x = 100
|
|
do { y = x ; x *= 1000; print x,y } while ( y != x )
|
|
print "loop terminated"
|
|
}
|