Skip to main content
Filter by
Sorted by
Tagged with
47 votes
4 answers
35k views

I recently started learning Common Lisp using SBCL. How can I compile my Lisp programs into a Windows binary?
Shenal Silva's user avatar
  • 2,063
30 votes
3 answers
24k views

I want to do some simulations with ACT-R and I will need a Common Lisp implementation. I have three Common Lisp implementations available: (1) CLISP [1], (2) ECL [1], and (3) SBCL [1]. As you might ...
lord.garbage's user avatar
  • 5,998
28 votes
7 answers
12k views

I was working in Emacs and then suddenly, the slime-repl sbcl says text is read only. Well that's great because now I can't type anything into it. How do I fix this?
Fderal's user avatar
  • 487
25 votes
2 answers
11k views

(David James both wrote the question and an answer. I'll edit it to conform to Stackoverflow standards.) Using SBCL you can compile Lisp code to machine code. Like Java, .net, C++ and even C you ...
David James's user avatar
22 votes
2 answers
6k views

I'm wondering what are some efficient ways to debug Common Lisp interactively using Emacs and SLIME. What I did before: As someone who learned C and Python using IDEs (VS and PyCharm), I am used to ...
Jian Xu's user avatar
  • 348
20 votes
2 answers
2k views

I'm confused about how defun macro works, because (defun x () "hello") will create function x, but symbol x still will be unbound. If I'll bind some lambda to x then x will have a value, but it ...
Filipp's user avatar
  • 939
19 votes
2 answers
4k views

I have installed SBCL onto OSX through Macports. When inside the REPL, it would be very convenient to be able to use ↑ and ↓ to iterate through the previous commands (similar to the behavior in bash ...
cwallenpoole's user avatar
  • 82.4k
18 votes
4 answers
5k views

I want to learn and use SBCL because of its ease of learning and speed. (I've been playing with Lisp 3 years ago, and now am refreshing it.) But how can I learn what's included in the standard library,...
culebrón's user avatar
  • 36.9k
16 votes
7 answers
2k views

As many other people interested in learning Lisp, I feel the resources available are not the best for beginners and eventually prevent many new people from learning it. Do you feel it could be created ...
Rui Costa's user avatar
  • 177
16 votes
2 answers
4k views

I am currently have a small program in Common Lisp, which I want to run as a shell script. I am using the SBCL and perfectly fine with this so will prefer to stay on this platform. :) I am aware ...
hijarian's user avatar
  • 2,248
15 votes
2 answers
4k views

I'm trying to learn common lisp currently and I've been using sbcl (I hope that's a decent implementation choice.) Coming from ruby and irb I find the automatic moved to a debugger on every mistake a ...
nkassis's user avatar
  • 5,383
14 votes
4 answers
5k views

I have a VPS with not very much memory (256Mb) which I am trying to use for Common Lisp development with SBCL+Hunchentoot to write some simple web-apps. A large amount of memory appears to be getting ...
David Gardner's user avatar
13 votes
2 answers
6k views

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? From what I've seen online, the answer appears to be to call SBCL, passing the ...
sadakatsu's user avatar
  • 1,283
13 votes
1 answer
3k views

I would like to know where I should save my .sbclrc file. I tried saving it in my .sbcl folder, but it doesn't seem to be working. I'm using Windows XP with Emacs version 23. I'm trying to set up ...
jack the lesser's user avatar
13 votes
2 answers
2k views

BACKGROUND When using 64bit Steel Bank Common Lisp on Windows for a trivial identity function: (defun a (x) (declare (fixnum x)) (declare (optimize (speed 3) (safety 0))) (the fixnum x)) I ...
Peter de Rivaz's user avatar
12 votes
5 answers
1k views

Take this function: (defun sum-greater (x y z) (> (+ x y) z)) It's my understanding that in LISP the first element in a list always represents a function to be performed on the subsequent atoms/...
Peter Le Bek's user avatar
  • 1,002
12 votes
1 answer
1k views

This happens to me time and again: I define the class and forget that I wanted it funcallable or it is, say, Gtk widget class, thus it's metaclass needs to be stated. Once it is defined, however, SBCL ...
mobiuseng's user avatar
  • 2,436
11 votes
2 answers
1k views

I love the idea of image-based languages, and lately I've been toying with Common Lisp via sbcl. I've read in a few places about how through being able to save and load back an image of the virtual ...
clintm's user avatar
  • 1,259
11 votes
3 answers
5k views

I've been dancing around LISP for decades, but now have decided to get serious. I'm going through the online version of Practical Common LISP. This is my setup: MacOSX 10.7.8 Xcode 4.5.2 SBCL 1.0.55....
Quasaur's user avatar
  • 1,365
10 votes
2 answers
1k views

Anybody know what #+ and #- operators means in .sbclrc? I couldn't find it in the manual. I see #- in .sbclrc after I installed quicklisp: #-quicklisp (let ((quicklisp-init (merge-pathnames "...
sudo's user avatar
  • 657
10 votes
2 answers
836 views

In Common Lisp (SBCL 1.0.58) why does the macro OR use a gensym, but not AND? For example, CL-USER> (macroexpand '(and 1 2 3 4 5)) (IF 1 (AND 2 3 4 5) NIL) T CL-...
kes's user avatar
  • 358
10 votes
5 answers
3k views

read-line and read-char both require you press Enter key after typing something. Is there any mechanism in Common Lisp that would allow the program to continue upon the press of any single character ...
johnbakers's user avatar
  • 24.9k
10 votes
2 answers
1k views

Using SBCL, I have the problem that my system defined via ASDF does not load, when the lisp code defines a string constant. Here's the code: constants.lisp (defconstant A 1.0) (defconstant B "B") ...
Ollimaus's user avatar
  • 229
10 votes
4 answers
4k views

I'm trying to figure out how to use the output stream of one program I start with RUN-PROGRAM so it can be used as the input of another program started with RUN-PROGRAM (i.e., the moral and perhaps ...
Pillsy's user avatar
  • 9,931
10 votes
4 answers
6k views

I was trying to use the slime-connect function to get access to a remote server with sbcl. I followed all the steps from the slime.mov movie from Marco Baringer, but I got stuck when creating the ssh ...
wallyqs's user avatar
  • 7,896

1
2 3 4 5
19