motivation with a lisp

1
2
3
4
(defun try (attempt action) ; function 'attempt' defined elsewhere
    (cond (= (attempt action) "success")
        (print "Success"))
        (try attempt action))
Last edited on
Topic archived. No new replies allowed.