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
24 views
Turn a string into a regexp that matches the plain string, in DrScheme
I want to split a string based on a non-regular expression. My input is a plain string. So, for example, given the input "hello.*there" and ".*", I want the result ("hello" "there" …
1
vote
4answers
50 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 …
0
votes
1answer
19 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.
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?
1
vote
3answers
34 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?
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 …
0
votes
0answers
49 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 th …
0
votes
2answers
41 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
vote
3answers
70 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 func …
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 …
2
votes
3answers
63 views
How to solve the following problem using accumulate (Scheme) [Solved]
Hello, I'm trying to do the following problem (there is a formula so I print-screened and uploaded it)
(http://img248.imageshack.us/img248/6558/problemh.jpg)
Using accumulate …
2
votes
4answers
102 views
Scheme: Implementing n-argument compose using fold
I'm trying to find the "best" implementation of a multi-argument "compose" in Scheme (I know it's a builtin in some implementations, but assume for the moment I am using one that d …
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"))
; …
0
votes
4answers
42 views
How to Implement a counter for every number inside a list with Scheme ?
Okay I want to count the number of times each [number] has appeared inside a list using Scheme.
How can I do that ? I also would like to store the counter of the given number and …
