Ignore /debug on host
[jscl.git] / src / compat.lisp
index a11aa5d..aeabc42 100644 (file)
   `(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)
+  )