2010-m1s1-compilation/bootstrap/6.3-equality-predicates.lisp
2010-12-09 15:15:15 +01:00

8 lines
145 B
Common Lisp

;; NEED : stringp
;; NEED : string=
(defun equal (a b)
(cond ((and (stringp a) (stringp b))
(string= a b))
(t
nil)))