source: trunk/essentials/sys-apps/gawk/test/inftest.awk

Last change on this file was 3076, checked in by bird, 18 years ago

gawk 3.1.5

File size: 229 bytes
Line 
1BEGIN {
2 k = 0
3 x = 100
4 # Added k limit test after finding some systems that didn't terminate
5 # the loop correctly, sigh...
6 do { k++; y = x ; x *= 1000; print x,y } while ( y < x && k < 1700)
7 print "loop terminated"
8}
Note: See TracBrowser for help on using the repository browser.