Tagged Questions

1
vote
1answer
25 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 procedur …
0
votes
2answers
79 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 '#\.) …
4
votes
3answers
867 views

Sources for learning about Scheme Macros: define-syntax and syntax-rules

I've read JRM's Syntax-rules Primer for the Merely Eccentric and it has helped me understand syntax-rules and how it's different from common-lisp's define-macro. syntax-rules is o …
0
votes
1answer
21 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
25 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
53 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
56 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?
0
votes
0answers
50 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
42 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 …
2
votes
3answers
66 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
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 …
10
votes
8answers
288 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 …
1
vote
3answers
72 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 …
8
votes
4answers
285 views

Is Clojure closer to Scheme or Common Lisp from a beginner’s perspective?

If I want to learn Clojure, should I start by learning Scheme or Common Lisp? Or is Clojure different enough from both of these, that I should just start learning Clojure by itsel …

1 2 3 4 5 19 next
15 30 50 per page