home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / calculat / sm30a.zip / LIST.(X) < prev    next >
Text File  |  1993-10-16  |  203b  |  7 lines

  1. #    list(y, x,xmin,xmax,dx) list out all of y when x runs from xmin to
  2. #    xmax on step dx.
  3. #    See also: do, repeat.
  4. #    e.g. [ list(x^2, x,1,3,1) ] gives [1, 4, 9]
  5.  
  6. list(y_,x_,a_,b_) := list(y,x,a,b,1)
  7.