;; ; (if= 2 3 (print 'ciao) (print 'baby)) (define-macro (if= x y args . elseargs) `(if (equal? ,x ,y) ,args ,@elseargs))