It is very easy to change CLisp\'s current working directory: >cat ~/.clisprc.lisp ;;; The following lines added by ql:add-to-in开发者_运维百科it-file:
开发者_JS百科I am wrote the code with bugs. Example: (print (/ 1 0)) I am trying compile with C-c C-c.
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
This is a recent error that I can\'t find any documentation for. It might not be cl-smtp specific, but it occurs each time I attempt to evaluate
How can I configure SBCL so that it uses more memory than the default when I start it by using \"M-x slime\" in Emacs?
I\'m not quite sure what i\'m doing wrong. I need to get file change event by select()system call. So the problem is that it doesn\'t wait, and immediately returns TRUE result. It\'s looks like i didn
A lisp question here. I\'ve been slowly learning lisp over the last couple of months and have ran into a problem when trying to grab input from a web browser vs. grabbing input from a REPL.
In sbcl, *(sb-mop:class-precedence-list (find-class \'cons)) ==>(#<BUILT-IN-CLASS CONS> #<BUILT-IN-CLASS LIST> #<BUILT-IN-CLASS SEQUENCE>
I would like to write/read a hash-table to/from disk, but it is not a (print)able object. I won\'t know the key names so I can\'t think of a way to do it manually. I read that there might be distribut
Supp开发者_运维问答ose I define a function globally: (defun x (y) (1+ y)) ;; Edit: my first example was too complicated