Add eqv?.
* module/mes/base.scm (eqv?): New function.
This commit is contained in:
parent
2390d46a63
commit
0bf21998a0
|
@ -41,6 +41,8 @@
|
|||
(list 'if (car x) (cons 'and (cdr x))
|
||||
#f))))
|
||||
|
||||
(define eqv? eq?)
|
||||
|
||||
(define (equal? a b) ;; FIXME: only 2 arg
|
||||
(if (and (null? a) (null? b)) #t
|
||||
(if (and (pair? a) (pair? b))
|
||||
|
|
Loading…
Reference in a new issue