1
vote
3answers
61 views
Common Lisp: cons inside loop
I wonder why in the following code, d is not being consed into x.
Any hints are much appreciated.
(defun it (x)
(setq f '(a b c))
(dolist (d f)
(cons d x))
(print x))
…
4
votes
1answer
44 views
How can I use the clojure REPL together with QT Jambi?
I have not found a solution to use the clojure REPL with Qt on the web.
Basically the problem is that the REPL hangs as soon as you call QApplication/exec in order to get the UI to …
2
votes
2answers
47 views
When is an initform used?
I'm forming a class for some work on molecular dynamics as follows:
(defclass %atom (particle)
((name :initarg :name :initform (error "Every atom in the system must have a name! …
5
votes
10answers
228 views
Compiled dynamic language
Greetings,
I search for a programming language for which a compiler exists and that supports self modifying code. I’ve heared that Lisp supports these features, but I was wonderin …
1
vote
2answers
67 views
Using Lisp to reprint a list
Hi guys,I have a small and interesting problem,but I cannot come with a perfect solution,I would be grateful if you could help me or give me a hint on this.
The problem is :
given …
2
votes
3answers
182 views
Scheme/Lisp nested loops and recursion
I'm trying to solve a problem in Scheme which is demanding me to use a nested loop or a nested recursion.
e.g. I have two lists which I have to check a condition on their Cartesia …
2
votes
2answers
64 views
lisp file pointers in classes
I'm running up against a problem in understanding the CLOS way of handling file access within a class. In c++ I would be able to do this:
class Foo {
Foo (string filename); // …
1
vote
4answers
77 views
Multiple constructors in common lisp
Can classes have multiple constructors and/or copy constructors in common-lisp? That is - in order to create a class for a new vector - "vecr" to represent 3-d vectors of real numb …
6
votes
12answers
396 views
Is learning LISP useful at all these days?
I picked up a LISP book at a garage sale the other day and was just wondering if it was worth spending some time on.
4
votes
2answers
117 views
“unfold” for common lisp?
I learned quite a bit of scheme from SICP but am more interested in common lisp now. I know common lisp's fold is reduce, with special arguments for left or right folding, but what …
4
votes
4answers
107 views
Calling Lisp from Ruby/Rails?
How might you call a Lisp program from a Rails application?... For example, allow the end user to enter a block of text in the Rails web app, have the text processed by the Lisp p …
8
votes
13answers
556 views
Why are C, C++, and LISP so prevalent in embedded devices and robots?
It seems that the software language skills most sought for embedded devices and robots are C, C++, and LISP. Why haven't more recent languages made inroads into these applications …
7
votes
1answer
224 views
What does this xkcd code do?
On the xkcd site today, the following appeared as a joke in a <script language="scheme"> tag
so what does the following code do / represent?
(define
(eval exp env)
(con …
3
votes
3answers
66 views
something confusing about define-key (and the issue of when to quote an argument)
It seems one is not supposed to quote KEYMAP when using define-key.
(define-key org-remember-mode-map "\C-c\C-r" 'org-remember-kill)
I'm confused because I think that all argume …
1
vote
4answers
76 views
Common Lisp: Beginner’s trouble with funcall
I'm trying to pass a function as an argument and call that function within another function.
A piece of my code looks like this:
(defun getmove(strategy player board printflag)
( …
