Skip to content

Instantly share code, notes, and snippets.

@lucindo
Created August 11, 2010 18:24
Show Gist options
  • Save lucindo/519459 to your computer and use it in GitHub Desktop.
Save lucindo/519459 to your computer and use it in GitHub Desktop.
;; pattern matching em CL é meio assim gents:
;; exemplo classics
(defgeneric fact (n))
(defmethod fact ((n (eql 0)))
1)
(defmethod fact ((n number))
(* n (fact (- n 1))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment