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

  1. * do                                                  internal
  2. do(expr, x,xmin,xmax,dx) evaluates expr with the x looping from xmin 
  3. to xmax on step dx.
  4. See also: repeat, list.
  5. e.g.
  6. IN:  x:=1, do(x:=x+1, j,1,5,1)
  7. OUT: x := 5
  8.