X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompat.lisp;h=d682604f7a2fc9040561389c46d13ebe57cf81eb;hb=25289632b5546a09f6e5c23d32e20c5a4a9114a3;hp=a11aa5dabfda43b31e56c976920e1e19b205f49b;hpb=89ee56f4f8d539db9462f50cbfd2e1b99ceb06d6;p=jscl.git diff --git a/src/compat.lisp b/src/compat.lisp index a11aa5d..d682604 100644 --- a/src/compat.lisp +++ b/src/compat.lisp @@ -38,12 +38,12 @@ `(eval-when (:compile-toplevel :load-toplevel :execute) ,@body)) -(defun concat-two (s1 s2) - (concatenate 'string s1 s2)) - (defun aset (array idx value) (setf (aref array idx) value)) (eval-when-compile (defun concat (&rest strs) (apply #'concatenate 'string strs))) + +(defun /debug (x) + (write-line x))