home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / d / doslogo.zip / LOGOLIB.ZIP / FACT.LG < prev    next >
Text File  |  1990-06-11  |  73b  |  5 lines

  1. to fact :n
  2. if equalp :n 1 [output 1]
  3. output (fact (:n - 1)) * :n
  4. end
  5.