1
vote
1answer
49 views
Please refactor my macro in Scheme
I am learning hygiene and I tried to make a simple for loop in Scheme. I want to support three kinds of constructs as shown in example below
(for i = 1 : (< i 4) : (++ i)
(printf …
3
votes
11answers
269 views
In Which Cases Is Better To Use Clojure?
I develop in Lisp and in Scheme, but I was reading about Clojure and then I want to know, in which cases is better to use it than using Lisp or Scheme? Thanks
2
votes
0answers
37 views
Parsing with DCGs in Scheme (without Prolog)?
Lots of Prolog-in-Scheme implementations are out there. E.g. Kanren, Schelog.
Apparently in "Paradigms of AI Programming" Norvig implements Prolog-to-Lisp compiler in Lisp in order to use Definite …
0
votes
1answer
55 views
the difference between if and cond?
i'm learning sicp now and do the ex2.23
i have wrirten the following code:
(define (for-each proc items)
(if (null? items)
#t
((proc (car items))
(for-each proc (cdr …
1
vote
2answers
50 views
Applying a symbol as a procedure
Suppose I have a simple symbol:
> '+
+
Is there any way I can apply that symbol as a procedure:
> ((do-something-with '+) 1 2)
3
So that '+ is evaluated to the procedure +?
0
votes
1answer
90 views
Pros and cons of MIT Scheme and DrScheme to study SICP?
All,
In your mind, what are the pros and cons of using MIT Scheme versus DrScheme, in the context of trying to go through SICP (presumably simultaneously to watching some / all the MIT 6.001 videos)? …
10
votes
8answers
314 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 and Python or am I …
1
vote
4answers
65 views
What are the differences in variable scoping between Python and Scheme?
Refering to Variable Scoping.
I'm trying to figure out what are the differences between those 2.
For example, Anonymous functions in a scheme function has access to the variables local to that …
0
votes
1answer
75 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
93 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 '#\.)
(char-exist-last? …
0
votes
1answer
26 views
string-split in DrScheme
How do I do equivalent of python's str.split in DrScheme? SRFI-13 doesn't seem to have it provided.
1
vote
3answers
83 views
“for each” or “every” keywords in Scheme
Is there a for loop or for each loop in Scheme ?
I've been searching around and found there is a keyword "every" but the scheme compiler language I'm using does not have this function pre-build in. …
0
votes
2answers
44 views
Scheme, getting the pointer from pointed struct
Assume I have a such struct:
(define-struct node (value next))
;and making 2 nodes, parent pointing to child as next.
(define child (make-node 2 null))
(define parent (make-node 1 child))
Under …
2
votes
1answer
71 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 (second$ str ) n))
…
1
vote
3answers
39 views
Check string containment in Scheme
How do I check, in DrScheme, whether a string contains a given character / substring? How do I include the proper module if it is defined in a module?
