3
votes
6answers
75 views
Collection of solved Lisp problems
Could somebody direct me to an online and free available collection/s or resources of solved and commented (not necessarily) Lisp programming problems, especially related to binary …
0
votes
2answers
76 views
Lisp code explanation
I'm porting some code from lisp, but I got stuck at this part (apparently that's for mit-scheme)
(define (end-of-sentence? word)
(and (or (char-exist-last? word '#\.)
…
0
votes
1answer
55 views
Scheme - how do I modify an individual element in a list?
If I have a list of 0's, how would I modify, for example, the 16th 0 in the list?
0
votes
2answers
32 views
lambda-gtk negative pointer
I was trying to write my own put-pixel on (Gdk) pixbuf in Lisp. When I finally realized how I can operate on C pointers in CL, new obstacle came along - (gdk:pixbuf-get-pixels pb) …
4
votes
4answers
157 views
Calculating the depth of a binary tree in LISP recursively
I have the following binary tree
A
/ \
B C
/ \
D E
represented as a list in Lisp (A 2 B 0 C 2 D 0 E 0) where the letters are node names and the numbers are the numb …
7
votes
2answers
78 views
Is there a common lisp package naming convention?
I have created some of my own user packages and have run into a name clash.
In Java, the naming convention is to use your domain name in the package name:
e.g. import com.example. …
10
votes
8answers
285 views
Lisp as a Scripting Language in a C++ app…
Hey, I've been looking at the possibility of adding a scripting language into my framework and I heard about Lisp and thought I would give it a go. Is there a VM for Lisp like Lua …
3
votes
11answers
150 views
Easy ways to try out and test Lisp syntax?
Clojure has introduced me to the concept of Lisp syntax, and I'm interested, but it's a pain to get the Clojure repl set up and use it on different machines. What other resources …
5
votes
3answers
104 views
Getting the first n elements of a list in Common Lisp?
The title says it all, really. How would I get the first n elements of a list?
CL-USER> (equal (some-function 2 '(1 20 300))
'(1 20))
T
I am absolutely certai …
2
votes
1answer
69 views
Translating the Q and P function from The Little Schemer into Common Lisp?
In Chapter 9 of the Little Schemer, the Author presents the following two functions
(define Q
(lambda (str n)
(cond
((zero? (remainder (first$ str ) n))
(Q …
1
vote
3answers
49 views
How to make a new list to point somewhere else, Lisp
Hello. The title is self-explanatory. How can I build a new list X from another list Y (same structure), but the resulting list pointing somewhere else in memory area, practically, …
3
votes
2answers
55 views
What does the SBCL time function return?
I'm trying to time an order statistic function implemented in SBCL. Googling around I found this timing function: (time form). However I'm not sure what it returns. It seems to be …
-3
votes
0answers
214 views
If there was one programming language u knew… waht would it be? [closed]
programming is become one thing everyone needs to know these days, more than ever before. Not speaking from the perspective of a typical programmer of course, real programmers need …
1
vote
2answers
57 views
scheme and set!
How can I change the value of a variable via a function that consumes lambda parameter?
Ie:
;;definitions
(define test "fails")
(define (experiment input) (set! input "works"))
; …
5
votes
10answers
254 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 …
