Tagged Questions

25
votes
5answers
8k views

Lisp Executable

I've just started learning Lisp and I can't figure out how to compile and link lisp code to an executable. Im using clisp and "clisp -c" produces two files .fas and .lib, what do I do next to get an ...
10
votes
1answer
215 views

Lisp simple question

I have some not understanding actions from gnu clisp Suppose, I have some code like (let ((x "Hi!"))(print x)). If I execute it from console (like, clisp fileName.lisp) I see Hi! But, when I ...
9
votes
2answers
402 views

Land of Lisp example redundency?

I've read a lot of good things about Land of Lisp so I thought that I might go through it to see what there was to see. (defun tweak-text (lst caps lit) (when lst (let ((item (car lst)) ...
8
votes
3answers
608 views

Lisp code called from Java

Long story: I am doing a project for my functional programing class, and I thought of writing an AI controller in Lisp, for the Mario AI competition. I was looking over frameworks/libraries/ways of ...
8
votes
3answers
1k views

Apache + mod_lisp + clisp

How to to configure apache + mod_lisp + clisp and set up a "Hello World!"? I couldn't find any complete howto on the subject. Thanks. Edit: Vebjorn's solution works, but then I don't how to code the ...
7
votes
1answer
165 views

How big is a class in memory?

How do I figure out how many bytes a defclass object has in Common Lisp?
6
votes
1answer
394 views

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.
5
votes
1answer
101 views

Inspecting a variable in the lisp SLIME debugger

I am trying to inspect the value of a variable at a determined breakpoint. Here is my simplified code: (defun foo () (maplist (lambda (var) (break) var) '(a b c))) slime ...
5
votes
2answers
198 views

Lisp: Why and how does '(nil nil) evaluate to true?

(if '(nil nil) 'print-true 'print-false) (if '(nil) 'print-true 'print-false) In the code above, why does the Lisp interpreter always evaluate these forms to true (print-true). I ...
5
votes
1answer
473 views

Comparing lists in Lisp

I could figure out some way to do this myself but I have a feeling there's a simpler, perhaps built-in way to do this. I want to see if any two lists share an element. These are the two lists I'm ...
4
votes
2answers
73 views

Details of GNU Common Lisp's (type-of)

If at the REPL I enter: (type-of (make-array 5)) then I get the response: (SIMPLE-VECTOR 5) Fair enough. So if at the REPL I enter: (type-of (make-array (list 5 3 2))) then I get the ...
4
votes
1answer
98 views

What's the corresponding standard function of atoi in clisp?

In visual lisp, you can use (atoi "123") to convert "123" to 123. It seems there is no "atoi" like function in clisp ? any suggestion is appreciated ! Now i want to convert '(1 2 3 20 30) to "1 2 ...
4
votes
3answers
109 views

How to implement a time limited execution mechanism in CLISP?

What I have in mind is something like: (run (long-calculation vars) time-limit) which returns the result of (long-calculation vars) or nil if time-limit is reached.
4
votes
3answers
223 views

In LISP is it possible to access a function's form?

Suppose I define a function globally: (defun x (y) (1+ y)) ;; Edit: my first example was too complicated Is it possible to "coerce" the function x into a list like: (x (y) (1+ y)) Thanks in ...
4
votes
2answers
138 views

Mapcar and assoc

I would like to do: (mapcar #'assoc '(a s) '((a . b) (c . d) (s . f))) and have it return ((A . B) (S . F)) Which seems pretty reasonable, considering (assoc 'a '((a . b) (c . d) (s . f))) ...
4
votes
1answer
155 views

Why does (list 'quote 'x) evaluate to 'x and not ('x) or (quote 'x)?

I'm trying to learn LISP and was going through a code example where something similar to the following code is used: (list 'quote 5) This evaluates to '5 in the REPL. I expected it to evaluate to ...
4
votes
2answers
176 views

Basic LISP recursion, enumerate values greater than 3

I know this is a total newb question (LISP and I aren't getting along) and I've really attempted to find an answer, but it's my professors parameters that are making it difficult... I need a ...
4
votes
5answers
391 views

Is there a common LISP function to compare the contents of two lists?

In particular, I just want to ensure that two lists have the same elements, ignoring order
4
votes
1answer
72 views

Turning off the result printing in common lisp

I am working with a reasonably large dataset in GNU clisp. It would be really nice if I could turn off the P of the REPL. Having thousands of results spew across my screen really isn't very useful. I ...
4
votes
4answers
308 views

How to get (/ 7 2 ) => 3, do I need some sort of typecast?

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.
4
votes
7answers
598 views

Looking for (c)lisp examples of mini-languages, that is, DSLs

Reading well-written code seems to help me learn a language. (At least it worked with C.) [deleting the 'over-specified' part of the question] I'm interested in particular in lisp's reputation as a ...
3
votes
2answers
51 views

specifying a slot value as a key when removing duplicates

The following code does what I want: 1 (defclass some-class () 2 ((some-slot 3 :initarg :somearg 4 :initform (error ":somearg not specified")))) 5 (defparameter *alpha* ...
3
votes
1answer
107 views

Lisp - modify A* to check for best cost, receive list of goal nodes

I am trying to modify an existing Hill-climb function, which takes two node names (such as A and E), and has an optional parameter which is used recursively (a queue). I'm trying to define a function ...
3
votes
1answer
155 views

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 from the book with the REPL. Is it possible to save my current program as a .lisp file so I ...
3
votes
2answers
125 views

Can anyone give me some hints about this question(Family tree)?

It comes from my homework assignments. There is a family tree a + b / | | \ c+u d+c e+w f ...
3
votes
2answers
115 views

Does a setfable nthcdr implementation exist?

I am using clisp and I wonder if there is any library with a setfable version of nthcdr that I can use.
3
votes
3answers
354 views

How to make and use library with lisp (clisp)?

In C/C++, I can make a library, and make it static one or dll using #include "" in source code, and -labc when linking. How do I have the same feature in lisp? As an example of util.lisp in directory ...
3
votes
3answers
415 views

running shell commands with gnu clisp

I'm trying to create a "system" command for clisp that works like this (setq result (system "pwd")) ;;now result is equal to /my/path/here I have something like this: (defun system (cmd) ...
3
votes
2answers
271 views

What can be done with CLISP

I started learning CLISP. Should I improve my self. What can be done with this programming language? What's it for. I'd appreciate your answers and comments. Thanks.
3
votes
4answers
889 views

How to include “port” package under CLISP in Ubuntu

I'm trying to follow this tutorial: http://cl-cookbook.sourceforge.net/sockets.html And I cannot get it working because of the port package. First the "(in-package :port)" did not work, it said the ...
2
votes
1answer
57 views

How does one ask for super-plain vanilla standard input?

I find when I'm typing a line like this to a clisp program's standard input ... ((74 25 80)) ... the cursor seems to dance, and it doesn't matter whether I'm doing (read) or (read-from-string ...
2
votes
2answers
74 views

What's difference between defvar,defparameter,setf,and setq?

I found the Similar question. But I'm not quite understand that explanation. So I try to run clisp with following example: [1]> (defvar a 5) A [2]> (+ a 1) 6 [3]> (defparameter b ...
2
votes
2answers
64 views

What are the magic variables in CLISP's REPL?

I have noticed that when I type an operator in REPL, it is often expanded into a value which has something to do with the input/output history. Specifically I noticed that: +, ++ ... expand to ...
2
votes
2answers
77 views

GNU clisp: suppressing warning message about no-applicable-method

This code works as I want, except for the warning message. In GNU Common Lisp, how do I suppress that message without suppressing other possible warning messages? 1 (defgeneric zang (x y) 2 ...
2
votes
2answers
192 views

How to implement the haskell `\\` function?

In haskell, [1,2,3,4,5,6,7] \\ [4,5,6] will return [1,2,3,7]. Now i want to implement the same function using clisp. Up to now i find set-difference works : (set-difference '(1 2 3 4 5 6 7) '(4 5 ...
2
votes
3answers
95 views

How to replace the number in a nested list with symbols?

It seems that I have to make it in detail; it's my homework. I don't want to copy the code written by you. I'm a newbie; what I'm trying to learn is how to decompose a subject to single pieces, and ...
2
votes
1answer
75 views

Conditional anaphoric collection best practices?

I trying to iterate through a sequence, conditionally perform an operation on each element and then collect it (but only if it matched the criteria). Here is a simplified example that works, I just ...
2
votes
2answers
78 views

Use the elements of the list in a format function

I want to do something like: (setf list '(1 2 3 4 5 6)) (format t "~A some text here ~A ~A ~A more text here ~A ~A" list) And have the output be 1 some text here 2 3 4 more text here 5 6 How ...
2
votes
2answers
89 views

Setting List Values to Numbers in CL, and Subsequently Checking Them

I'm playing around in CL, making a One-Dimensional version of Battleship before I try to tackle a full Two-Dimensional version, and I've hit a hangup. To check if the boat is there, I've represented ...
2
votes
2answers
203 views

How to define structures in Lisp using parameters in the definition

I want to write some Lisp code like this (defstruct board (size 7) (matrix (make-array (list size size)) (red-stones 0) (black-stones 0)) in order to define a structure that ...
2
votes
4answers
363 views

LISP car of the last element?

LISP stumps me yet again... Why can't I get the value of the last element in a list? I have a list set up similar to this: (setq bar '(((1 2) 3 4 5)((6 7) 8 9 10))) Now I get a return of 4 for: ...
2
votes
4answers
111 views

CLISP overflow after multiplication

i'm trying to get a first lisp program to work using the CLISP implementation, by typing (print (mod (+ (* 28433 (expt 2 7830457) 1)) (expt 10 10)))) in the REPL. but it gives me *** - overflow ...
2
votes
5answers
435 views

Keeping CL and Scheme straight in your head

Depending on my mood I seem to waffle back and forth between wanting a Lisp-1 and a Lisp-2. Unfortunately beyond the obvious name space differences, this leaves all kinds of amusing function name/etc ...
1
vote
4answers
242 views

how to get 64 bit integer in common lisp?

I want to write a bitboard in common lisp, so I need a 64 bit integer. How do I get a 64 bit integer in common lisp? Also, are there any libraries that could help me accomplish this without writing ...
1
vote
2answers
90 views

building a hash table with gensym and macrolet

I'm trying to build a hash table (among other actions) while reading. I don't want the hash table to have global scope (yet), so I'm doing this with a macro and gensym. Inside the macro x, I'm ...
1
vote
1answer
66 views

What's the best way to sort a hashtable by value?

Now i have to copy the hastable to a list before sorting it: (defun good-red () (let ((tab (make-hash-table)) (res '())) (dotimes (i 33) (setf (gethash (+ i 1) tab) 0)) (with-open-file ...
1
vote
2answers
60 views

How can i use “loop for” in this situation?

The following code will raise: SYSTEM::%EXPAND-FORM: (SETQ NUM (SUBSTRING LINE 6)) should be a lambda expression. (defun good-red () (let ((tab (make-hash-table))) (dotimes (i 50) (setf ...
1
vote
1answer
127 views

Clisp REPL error output: how to find line number in file where error occurred?

I'm working through Land of Lisp, using CLisp, writing the code in Vim with Slimv, then alt-tabbing to another terminal window and loading the file into the REPL with (load 'file.lisp), then running ...
1
vote
1answer
197 views

adjacency matrix/Floyd/Warshall in lisp

Apparently my teacher believes that even if we don't have time to learn stuff (nor enough examples) we should move on, so I now need to know how to make Floyd-Warshall's and Warshall's algorithms in ...
1
vote
3answers
201 views

What version(s) of LISP have putprop?

I am hacking an old Lisp program, which once compiled and worked in Franz LISP, it is claimed. But Franz LISP is too old, so I am trying the CLISP compiler. However, CLISP does not have putprop. I ...

1 2