HardenedBSD/contrib/awk/test/inftest.awk

6 lines
101 B
Awk
Raw Normal View History

1997-10-14 20:17:11 +02:00
BEGIN {
x = 100
do { y = x ; x *= 1000; print x,y } while ( y != x )
print "loop terminated"
}