Tagged Questions

1
vote
0answers
22 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 orde …
3
votes
10answers
206 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
0
votes
1answer
49 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-eac …
1
vote
2answers
49 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
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.
0
votes
2answers
92 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 '#\.) …
1
vote
4answers
64 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
69 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
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?
0
votes
1answer
81 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
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 …
2
votes
3answers
78 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 …
0
votes
4answers
45 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 …
1
vote
3answers
79 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 …
10
votes
8answers
306 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 2 3 4 5 19 next
15 30 50 per page