GNU CLISP implements the ANSI Common Lisp standard with many extensions.
3
votes
2answers
61 views
Common Lisp: Why does my tail-recursive function cause a stack overflow?
I have problem in understanding the performance of a Common Lisp function (I am still a novice). I have two versions of this function, which simply computes the sum of all integers up to a given n.
...
0
votes
1answer
52 views
Need to understand a LISP program with recursion
(defun help(a x)
(if (null x) nil
(cons (cons a (car x)) (help a (cdr x)))))
(defun partition(x)
(if (null x) '(nil)
(append (help (car x) (partition(cdr x))) (partition(cdr x)))))
...
0
votes
2answers
44 views
Manual for CLISP
I want to read help for clisp function from REPL or just from shell.
I found (symbol-plist) function for this which give this:
(symbol-plist 'bit)
(SYSTEM::TYPE-SYMBOL #<COMPILED-FUNCTION ...
1
vote
2answers
82 views
how to overwrite (defun eval (expr)) function in LISP
I am new to LISP programming and it is the end of semester and our teacher asked us to do this project and I have been trying to make it but I am stuck so any help would be appreciated. the Project is ...
3
votes
1answer
75 views
Listing directory names with Unicode symbols in them isn't working correctly
I'm trying to write to a file a list of all the sub-directories, but the unicode symbols in the sub-directory names get replaced by question marks. I'm using CLISP 2.49 on Windows XP.
Here is the ...
2
votes
2answers
43 views
Implementing list (lisp) with limited procedures
I'm currently working on a clisp assignment making a basic address book. However, the caveat to this assignment is I can only use cons, car, cdr, cond, if, eq, assoc and setf to complete the ...
0
votes
1answer
41 views
Combine list items in Common Lisp (Clisp)
I'm having trouble combining two items in a list together into one item.
For example:
'(Ben Hofferber) => '(Ben_Hofferber) or '(Ben-Hofferber)
Any ideas on how this can be achieved?
I've been ...
0
votes
2answers
268 views
Print first N prime numbers in Common Lisp
I am making a Common Lisp function to print the first N prime numbers. So far I've managed to write this code:
;globals
(setf isprime 1) ;if 1 then its a prime, 0 if not.
(setf from 1) ;start ...
1
vote
1answer
43 views
Giving a symbol a negative value in lisp
I'm very new to lisp and I am working on basic syntax. I am trying to convert:
r1 = (-b + sqrt(b^2 - 4*a*c))/(2*a)
into a lisp format. The only problem I think I am having is that I cannot get lisp to ...
-2
votes
1answer
61 views
return odd indices of list recursively [closed]
I'm relatively new to Lisp.
I have:
(defun odds (the_list))
and I want to recursively call this function and return the elements at odd indices of the original list.
For example: (odds '(a b c ...
2
votes
1answer
103 views
LISP - How to get average length from nested list?
I have a problem. I need to get average length from this list: (1 (2 3 4) 5 (6 7) 8 (9)). It should be 2. And I have no idea where to start...
I tried to get (1 2 3 4 5 6 7 8 9) from (1 (2 3 4) 5 (6 ...
-1
votes
1answer
61 views
Check if a list contains at least one non-nil element
The title pretty much tells everything.
I am searching for something like
(atleastonenonnil '(nil nil nil nil '(A B C)))
=> T
I could do it in a recursive way, but I couldn't. Should I use some ...
6
votes
3answers
215 views
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 stumbling block, where the author says:
Calling yourself in this way is not only allowed in Lisp, but ...
0
votes
0answers
30 views
How to make slime-edit-definition work with non-compiled functions?
I am using slime with clisp. If I try to use M-. on a function call while the file has never been compiled but only evaluated (by the mean of `slime-eval-last-expression' aka C-x C-e) then I get that ...
1
vote
1answer
48 views
Where are the files for a package?
Following this clisp basic website tutorial it asks me to define a package to persist the code:
(defpackage :retro-games
(:use :cl :cl-who :hunchentoot :parenscript))
However, I cannot work out ...
1
vote
1answer
63 views
Installing Clisp on Windows 8
Has anyone managed to install CLisp on Windows 8. I am unable to get it to work. I downloaded the exe from SF. But, after I allow the application to run as administrator, I see nothing. I did notice ...
0
votes
2answers
15 views
clisp: how can I find a specification of complex
I am writing a LISP program to deal with line integrals on complex numbers.I wonder if somebody can tell me where can I find a specification of class complex in clisp
0
votes
1answer
18 views
How do you get code of a clisp memory image
I have got a memory image, that i can't find the source for and I want to get the code out of it again. What do i have to do to achieve that? I can obviously load the image, but then i'd need to guess ...
0
votes
0answers
77 views
Windows 2012 (win8 64 bit) and Common Lisp (x86 build)
I have Windows 2012 Server installed on my PC 64 bit version and installed 32 bit of the Common Lisp.
I have put clisp.exe in the allowed DEP (data execution prevention ) list, but I've got such ...
3
votes
2answers
96 views
How to write a clisp executable file? [duplicate]
Possible Duplicate:
Lisp Executable
Was getting started with Clisp and the biggest problem I faced is that there are very few tutorials out there to explain how to write clisp files. Most ...
1
vote
2answers
35 views
Function for list is undefined
I'm having problems with clisp.I'm tryng just to get the sum of the numbers in a list,but it gives me this error:
EVAL-the function L is undefined
when i call
(sum '(2 (c 6)))
Here is the code:
...
0
votes
1answer
53 views
Variable in closure
>
(defun hib (f1 f2)
(cons
(function
(lambda ()
(setq f2 (+ f1 (setq f1 f2))))
)
(function
(lambda ()
(list 88 f1 f2 99 ))
)
)
)
hib
> (setq hib1 ...
1
vote
3answers
52 views
How can I create directories in clisp 2.33?
Version output is:
GNU CLISP 2.33 (2004-03-17) (built 2004-05-24 16:21:45)
Software: GNU C 3.3.1 (cygming special) ANSI C program
Features: (CLISP ANSI-CL COMMON-LISP LISP=CL INTERPRETER SOCKETS ...
-2
votes
1answer
110 views
manipulating lists in common lisp [closed]
how does one create a list from a list,what function can i really use i was thinking of using mapcar or maplist with cons together but im not getting any fruitful results,lets say i have a list (a b) ...
0
votes
1answer
20 views
Intro guide to troubleshooting errors in clisp
I'm new to lisp, working in clisp on cygwin. When I have a problem, I see something like this
*** - SYSTEM::READ-EVAL-PRINT: variable DB.CLISP has no value
The following restarts are available:
...
8
votes
1answer
259 views
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 we need to prefix a lambda expression with #'?. If I write something like this in ...
0
votes
2answers
55 views
Export functions from another file clisp
I am using the programming language clisp.
I have some functions X,Y,Z in a .lisp file, lets say A.Now I am writing a different program in .lisp file B and I need to make use of the X,Y,Z.
How do i ...
1
vote
3answers
392 views
Lisp, While function undefined error with CLISP?
I am working on a program in LISP, using CLISP to run the program.
My function has a while statement in it, but CLISP is returning
*** - EVAL: undefined function WHILE
Function is nothing fancy,
...
-1
votes
2answers
69 views
How to get the shell function's output in slime?
In REPL, we can get its output normally:
(shell "head -3 ~/misc.lisp")
(asdf:make-build 'stumpwm :type :program :monolithic t
:move-here "."
:name-suffix ""
However, we ...
0
votes
2answers
93 views
How to find where a stack overflow occured in lisp?
I'm getting: *** - Program stack overflow. RESET running some lisp in the REPL. I have seen various suggestions on how to modify stack size but... how do I just find what function is causing the ...
1
vote
2answers
148 views
stack overflow when executing recursive lisp function
I get a '-Program stack overflow' prompt in clisp when I try to execute the following recursive function that, I believe, returns the most common element in a list:
(defun greater-member (lst)
...
2
votes
3answers
351 views
Lisp function: union
I have a lisp homework I am having a hard time with it.
I have to write a function that perform a union operation. The function takes 2 inputs, either in the form of either atom or list and unions ...
1
vote
1answer
182 views
Simple Web Form in Lisp [closed]
I have been trying several common lisp web frameworks: http://weblocks.viridian-project.de looked promising but I couldn't really get it working in OS X. SBCL multi treat (even with ports) is not ...
0
votes
2answers
206 views
About stumpwm and swank(clisp)
I have built stumpwm using thread enabled clisp successfully. And the created stumpwm works great. However, the swank server doesnot work if started from ~/.stumpwmrc as below:
(load ...
0
votes
1answer
56 views
LISP only retrieving first element of a list item
I have:
(defun getTotalValue(pack)
(cond ((null pack) 0)
(t (+ (car (car pack)))) (getTotalValue (cdr pack))
)
)
Which, to my understanding, will add up all the first elements of the items ...
1
vote
1answer
61 views
Dribble is producing empty output files
I need to create an output file for a program in lisp, but I cannot get dribble to properly record my output. I'm using lispbox and my buffer looks like this when I try to use dribble:
(dribble ...
1
vote
1answer
62 views
loading a file in lisp
Can anyone please tell me after compiling and loading a file do we still have to define the function(already in the file compiled and loaded) in repl to use it? or is there still process
left so that ...
0
votes
3answers
109 views
lisp, how to eliminate restarts
I am quite new to lisp. When I was playing in clisp environment I made mistakes often but was then immediately punished by a long list like
ABORT :R11 Abort debug loop
ABORT ...
0
votes
2answers
105 views
use clisp to download website
I am trying to use clisp to dump webpages like, e.g. to define a function "read-url", such that (read-url "http://www.kernel.org/index.html") would display the html source code like:
<?xml ...
1
vote
1answer
128 views
Test if quicklisp has already been installed in clisp
I'm working on a project in Common Lisp which makes use of a package installed with quickload. I'm making a bash script in the root of the project which tests if the necessary programs are installed, ...
3
votes
1answer
332 views
Quicklisp Cannot Install LIBSSL for Hunchentoot
I installed CLisp today on my Win7 PC. Please don't criticize my environment choices, but if this particular setup has flaws relating to Quicklisp and Hunchentoot feel free to point them out. I ...
0
votes
0answers
130 views
Common Lisp: How to tunnel a MySQL query through a SSH connection
My question is similar to How to create a ssh tunnel in ruby and then connect to mysql server on the remote host:
How can I use/create a SSH tunnel to query a database on a remote MySQL server from ...
1
vote
1answer
83 views
loading cl+ssl using clisp/asdf under windows 7
I am trying to load up "cl+ssl" via
(asdf:oos 'asdf:load-op :cl+ssl)
resulting in
Component :TRIVIAL-GARBAGE not found, required by #<SYSTEM "cl+ssl">
is this problem known to anybody and ...
1
vote
1answer
161 views
First larger (common) lisp program -> 'random' not working as expected
just for fun I wrote a simulation of the "monty hall problem" in Python. Later I experimented with Lua and decided to write it again in Lua to see how it will look in comparison. It was a quite ...
1
vote
1answer
110 views
“Member” won't recognize the members of a list
I'm experiencing a very curious problem. I have a list named "theorems" that has exactly one item. Here's proof:
[]> theorems
(((ROSES ARE RED) ^ (~ (ROSES ARE RED))))
[]> (car theorems)
...
1
vote
3answers
245 views
Parse Tab Delimited String
I'm having some trouble figuring out how to separate a string which is tab delimited into chunks of data as an example if i have a text file which I'm reading from that looks like this
a1 b1 ...
-1
votes
1answer
390 views
clisp converting between infix, postfix, prefix (i'm trying if statements)
I'm using CLISP and am trying
(if ( = (first '(+ 2 3)) + ) 10 20) //10 and 20 are just placeholders
I am trying to create a program that converts between infix, postfix, and prefix. I believe that ...
2
votes
4answers
515 views
difficulties with small lisp program for palindrome
Hi all I'm trying to write a lisp function using clisp v2.47 which takes a word and returns true if it is a palindrome otherwise it will return false. By the way whats worth mentioning is that I'm ...
2
votes
1answer
141 views
LISP - converting grammar inputs to strings (language theory)
I have implemented a problem which determines the non-productive or inaccessible elements from a Grammar (Vn;Vt;P;S) where Vn - set of variables; Vt- set of terminals and P - production rules, and S - ...
2
votes
4answers
354 views
CLISP - Reversing a simple list
I have to reverse the elements of a simple (single-dimension) list. I know there's a built-in reverse function but I can't use it for this.
Here's my attempt:
(defun LISTREVERSE (LISTR)
(cond
...
