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