home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 24 / AACD 24.iso / AACD / Online / Epic4 / share / epic / help / 5_programming / continue < prev    next >
Encoding:
Text File  |  2001-03-21  |  388 b   |  17 lines

  1. Synopsis:
  2.    continue
  3.  
  4. Description:
  5.    Continue skips certain loops. In a for() or while(), continue will jump to
  6.    the end of the current loop and continue to the next iteration.
  7.  
  8. Examples:
  9.    for (@loop=0,loop<=10,@loop++) {
  10.      if (loop==4) continue
  11.      echo $loop of 10, skipping 4.
  12.    }
  13.  
  14. See Also:
  15.    alias(5); break(5); return(5); for(5); while(4) until
  16.  
  17.