home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / Tools / MorphOS / Epic4_mos / share / epic / help / 5_programming / break < prev    next >
Encoding:
Text File  |  2002-10-28  |  380 b   |  17 lines

  1. Synopsis:
  2.    break
  3.  
  4. Description:
  5.    Break, like its C counterpart, breaks out of a loop.
  6.  
  7. Examples:
  8.    @loop = 0
  9.    while (0==0) {                      /* endless loop? */
  10.      @loop++
  11.      if (loop==20) break
  12.    }                                   /* loop only made 20 iterations */
  13.  
  14. See Also:
  15.    alias(5); continue(5); return(5); for(5); while(4) until
  16.  
  17.