home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / calculat / sm30a.zip / REPEAT.KEY < prev    next >
Text File  |  1993-11-07  |  194b  |  7 lines

  1. * repeat                                              internal
  2. repeat(expr until test) repeats expr until test gives 1.
  3. See also: do, list.
  4. e.g.
  5. IN:  x:=1, repeat(x:=x+1, x>5)
  6. OUT: x := 6
  7.