I\'d like to install slime on my Emacs 23.2.1. Since M-x slime doesn\'t succeed in start it, I modified the ~/.emacs file.
I tried defining a structure with a custom print function and constructor like so: (defun print-test (a-test stream depth)
I download the http://prdownloads.sourceforge.net/sbcl/sbcl-1.0.51-x86-64-linux-binary.tar.bz2 and install inSUSE 10 x86-64. But when run sbcl it error say: floating point exception
开发者_JS百科I would like to do something akin to this: (defstruct person real-name (fake-name real-name)) ;if fake-name not supplied, default to real-name
In Clojure one can write (:foo {:foo 3 :bar 5}) which evaluates to 3. Is there any way to extend Common Lisp so that a ke开发者_开发知识库yword will act as a function that looks itself up?There are
It comes from my homework assignments. There is a family tree a+b /||\\ c+ud+ce+wf / | \\/ \\ m+xn+yopq r
In Common Lisp, how can I override the default s开发者_如何学运维tring representation of a CLOS class so that calls to format or princ will print something intelligible, even when objects of that clas
Can somebody explain why the function eval behaves like this? (eval (list \'cons t n开发者_如何学Cil)) returns (T)
After upgrade开发者_开发问答 of the system from Ubuntu 10.10 to Ubuntu 11.04, have a problem with LTK.
As shown in the below Lisp code, (defvar a 1) (defvar b 2) (defmacro macro-add (c d) `(开发者_运维技巧+ ,c ,d))