home *** CD-ROM | disk | FTP | other *** search
/ Power Programming / powerprogramming1994.iso / progtool / cmplngmg / cl_jun89.arc / AWK210.ARC / FLOW.AWK < prev    next >
Text File  |  1988-03-06  |  425b  |  24 lines

  1. BEGIN {
  2.         a[1] = "one"; a[2] = "two"
  3.         a[3] = "three"; a[4] = "four"
  4.         a[5] = "five"; a[6] = "six"
  5.       }
  6. END   {
  7.         for (i in a) {
  8.             if (i == 2) continue
  9.             if (i == 5) break
  10.             print i, a[i]
  11.         }
  12.       }
  13. BEGIN {
  14.         while (i++ < 6) $i = a[i]
  15.       }
  16. { print "never executed" }
  17. BEGIN {
  18.         print
  19.         print ""
  20.         exit
  21.       }
  22.  
  23.  
  24.