DEFCOMPARISON for =
authorOwen Rodley <Strigoides@gmail.com>
Sat, 18 May 2013 13:51:08 +0000 (01:51 +1200)
committerOwen Rodley <Strigoides@gmail.com>
Sun, 19 May 2013 23:06:26 +0000 (11:06 +1200)
src/numbers.lisp

index 8121b8e..060e657 100644 (file)
@@ -16,7 +16,6 @@
 ;;;; Various numeric functions and constants
 
 ;; Basic functions
-(defun = (x y) (= x y))
 (defun * (x y) (* x y))
 (defun / (x y) (/ x y))
 (defun 1+ (x) (+ x 1))
@@ -58,6 +57,7 @@
 
 (defcomparison >)
 (defcomparison >=)
+(defcomparison =) 
 (defcomparison <)
 (defcomparison <=)