home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1994 October / macformat-005.iso / Shareware City / Developers / xlispmac / lisp / TAK.LSP < prev    next >
Encoding:
Lisp/Scheme  |  1994-05-28  |  168 b   |  10 lines  |  [TEXT/xlsp]

  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.