home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume10 / ifp / part01 / fproot / math / arith / prod
Encoding:
Text File  |  1987-07-05  |  162 b   |  14 lines

  1. (*
  2.  * prod
  3.  *
  4.  * Compute product of sequence.
  5.  *
  6.  * E.g. <10 2 3 4> : prod -> 240
  7.  *)
  8.  
  9. DEF prod AS
  10.    IF ../logic/null THEN #1
  11.    ELSE
  12.       INSERT * END
  13.    END;
  14.