home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / alde_c / misc / util / xlsp20 / tak.lsp < prev    next >
Encoding:
Lisp/Scheme  |  1988-02-12  |  177 b   |  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.