freebsd-nq/contrib/awk/test/inftest.awk
1997-10-14 18:17:11 +00:00

6 lines
101 B
Awk

BEGIN {
x = 100
do { y = x ; x *= 1000; print x,y } while ( y != x )
print "loop terminated"
}