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 ...
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))
...
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?
5
votes
1answer
100 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
1answer
471 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
72 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
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
307 views
Is there a way to get the CLISP compiled with dynamic FFI support on Mac OS?
I use clisp 2.48 (2009-07-28) on Mac OS X 10.6.4. I downloaded the clisp with 'sudo port install clisp'.
After installing quick lisp, I installed some packages, and most of them are OK.
However, ...
3
votes
2answers
48 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
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
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 ...
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
73 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
1answer
53 views
Lisp isn't reversing my lists
I'm doing some homework in Lisp, using clisp to test, and I'm loading this code and running in in clisp
(defun myreverse (thelist)
(reverse thelist)
(print thelist)
(if (equal thelist nil)
nil
...
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
1answer
90 views
How can I interact with an ssh session in clisp?
I want to use common lisp for scripting, and connecting to a remote computer over ssh and sending some commands. The easiest way seems to be to use clisp's ext:run-shell-command, documentation here, ...
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
2answers
164 views
Differentiate between a list and an atom in common lisp
I have a basic clisp function that I am making that just returns the number of atoms in a list. The issue I am having is I need it to increment for atoms in a list that is in the list, instead of ...
2
votes
2answers
342 views
How to unload a lisp file in CLisp REPL?
Am able to load and call the functions but I would like to
reload the file after making some corrections.
Cant find either an unload or reload function?
1
vote
4answers
240 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
1answer
41 views
Obtain IP address of connecting client in Clisp
So I have a server, written in Common Lisp to be run in the Clisp interpreter. When a client connects to the aforementioned server, I need a way to obtain their IP address. Is a function that would ...
1
vote
0answers
82 views
How can I make slime work with clisp on windows
I'm using emacs 23.3 and clisp 2.49 on windows 7. I have installed slime 2011-11-15 by unpacking the package in my emacs site-lisp directory. I have then put this in my (otherwise empty) .emacs file:
...
1
vote
1answer
139 views
Common Lisp Binary Tree
I am trying to write a program in Common Lisp using GNU ClISP to compile it. I would like to enter a list such as (A(B (C) ()) (D (E) (F (G) ()))) and depending on the first word print out the pre-, ...
1
vote
2answers
109 views
Using stdout from shell script in common lisp
I am writing a common lisp program that needs to handle the output of a command. However, when I try to use the results in another function, I only get a NIL as return-value.
Here is the function I ...
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
vote
2answers
179 views
Listing directories in CLISP
I've been trying to see get a list of all files within a directory in CLISP, but I've only been able to get all non-directory files within a directory.
I'm currently trying this in Windows 7 with ...
1
vote
3answers
655 views
What to learn Scheme vs Lisp
Scheme vs Lisp ? What to learn, I need language for functional programming .
1
vote
1answer
166 views
clisp : remove from list of list
(remove '(1 2) '((1 2) (1 3)))
doesn't remove '(1 2) from list in common lisp.. (I think it use eq and not equal)
Do we have any other alternative to delete element from list of lists in clisp??
1
vote
1answer
150 views
Does CLISP have something like SBCL's sb-ext:*posix-argv*?
I'd like to be able to access CLISP's argv from Lisp.
1
vote
0answers
56 views
Jabberwocky installation gives registry error
I get the following in Installation log for Jabberwocky :(
<0>
<0> ! REG.EXE VERSION 3.0
<0>
<0> HKEY_CLASSES_ROOT\fasfile\Shell\Load_into_CLISP\command
<0> <NO ...
0
votes
2answers
89 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 ...
0
votes
0answers
242 views
Need some help with my lisp programming homework.(water jug problem) [closed]
It' my homework , I got some problems in programming ...
There are two jugs, one can hold 3 and the other 5 gallons of water. Actions that can be performed with the jugs are:they can be filled, ...
0
votes
0answers
86 views
How to implement such a function using clisp? [closed]
I am a clisp newbie. I want to convert the following haskell function into lisp.
goodRed:: IO [Int]
goodRed = do {
samp <- fmap (concat . str_ints_hit) $ readFile "ssqHitNum.txt";
return $ ...
0
votes
2answers
139 views
Problems with Nth in common lisp
I'm trying to write a function that can calculate GPA. Now I can do limited calculation(only 3 ),but I stuck on how to calculate more , without using loop or recursion (that's the requirement of ...
0
votes
1answer
81 views
Got some problems with CLISP's nested list and lambda expression
Nested lists in Common Lisp really confused me. Here is the problem:
By using recursion, let (nested-list 'b '(a (b c) d)) return t
if the first argument appears in the second argument (which ...
0
votes
4answers
234 views
Maximum of a list using recursion?
My task is to write function in lisp which finds maximum of a list given as argument of the function, by using recursion.I've tried but i have some errors.I'm new in Lisp and i am using cusp plugin ...
0
votes
5answers
1k views
LISP or Haskell [closed]
LISP or Haskell, I need to learn functional programming, but I heard that lisp is very old, any advice between those two languages ?
0
votes
2answers
267 views
Is there a better way to get the nth item in a list?
The following two expressions are equivalent:
(third (list 1 2 3 4))
(first (nthcdr 2 (list 1 2 3 4)))
However, using "third," "fourth," "fifth," etc. isn't always practical and (first (nthcdr n ...