Top "Clisp" questions

GNU CLISP is an UNIX/Windows implementation of ANSI Common Lisp with many extensions.

Generating Fibonacci series in Lisp using recursion?

I'm a newbie in LISP. I'm trying to write a function in CLISP to generate the first n numbers of …

recursion lisp clisp
Lisp Executable

I've just started learning Lisp and I can't figure out how to compile and link lisp code to an executable. …

build lisp common-lisp clisp
What's difference between defvar, defparameter, setf and setq

I found a Similar question. But I don't quite understand that explanation. So I'm trying to run clisp with the …

lisp common-lisp clisp
What are the main differences between CLISP, ECL, and SBCL?

I want to do some simulations with ACT-R and I will need a Common Lisp implementation. I have three Common …

common-lisp sbcl clisp ecl
Integer division in Common Lisp?

When I do (/ 7 2), what should I do to get the result 3? If I do (/ 7 2.0), I get 3.5, which is as expected.

lisp casting clisp
Writing lambda expressions in common lisp

I am currently reading ANSI Common Lisp by Paul Graham, and I have a question about writing lambda expressions. Do …

common-lisp lambda clisp
Stack overflow from recursive function call in Lisp

I am learning Lisp from the book "The Land of Lisp" by Conrad Barski. Now I have hit my first …

lisp common-lisp tail-recursion clisp land-of-lisp
How to change SBCL's current directory?

It is very easy to change CLisp's current working directory: >cat ~/.clisprc.lisp ;;; The following lines added by ql:…

common-lisp sbcl clisp
Which command could be used to clear screen in CLISP?

Such as cls for cmd.exe. It's very annoy if I can't do this.

lisp clisp
Can I save source files in Clisp?

I'm a beginner programmer and am going through the book "Land of Lisp". I have been typing in the examples …

lisp common-lisp clisp land-of-lisp