aboutsummaryrefslogtreecommitdiffstats
path: root/test/inftest.awk
blob: f24bd7e32d0e013fded91a4f7ae2d26b442ab133 (plain)
1
2
3
4
5
BEGIN {
  x = 100
  do { y = x ; x *= 1000; print x,y } while ( y < x )
  print "loop terminated"
}