Implemented string<
[jscl.git] / src / boot.lisp
index 47f4309..5f44fa6 100644 (file)
 (defun char= (x y)
   (eql x y))
 
+(defun char< (x y)
+  (< (char-code x) (char-code y)))
+
 (defun integerp (x)
   (and (numberp x) (= (floor x) x)))