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

  1. * block                                               internal
  2. block(a,b,c) groups a,b,c and only returns the last arguement as its
  3. value, or returns the second last arguement as its value if the last
  4. arguement is local(). It is used as grouper in definition of a procedure.
  5. All variables in block are global, except for variables declared by
  6. local().
  7. e.g. f(x_):=block(p:=x^6,p, local(p))
  8. See also: local.
  9.