home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / xlisp / xl21freq.zip / TAK.LSP < prev    next >
Lisp/Scheme  |  1993-12-17  |  177b  |  10 lines

  1. (defun tak (x y z)
  2.   (if (not (< y x))
  3.       z
  4.       (tak (tak (1- x) y z)
  5.            (tak (1- y) z x)
  6.            (tak (1- z) x y))))
  7.  
  8. (defun dotak ()
  9.   (tak 18 12 6))
  10.