home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gawk-2.15.6-base.tgz / gawk-2.15.6-base.tar / fsf / gawk / test / inftest.awk < prev    next >
Text File  |  1993-10-19  |  101b  |  6 lines

  1. BEGIN {
  2.   x = 100
  3.   do { y = x ; x *= 1000; print x,y } while ( y != x )
  4.   print "loop terminated"
  5. }
  6.