0
votes
1answer
43 views
Binary Trees in Scheme
Consider the following BNF defining trees of numbers.
Notice that a tree can either be a leaf, a node-1 with one subtrees, or a node-2
with two subtrees.
tree ::= (’leaf number)
| (’node-1 tree)
| …
0
votes
2answers
60 views
Can I define a global from inside a procedure in Scheme?
I have a situation where I'd like to do something like...
(define (def a b)
(store a b) ; store the definition of 'a' somewhere
(define-global a b)) ; also define 'a' so that its definition
…
2
votes
4answers
346 views
Using AND with the apply function in Scheme
Why doesn't the following work?
(apply and (list #t #t #f))
While the following works just fine.
(apply + (list 1 3 2))
This seems to be the case in both R5RS and R6RS?
5
votes
6answers
170 views
What are the prerequisites of reading ‘The Little Schemer’?
From the reviews 'The Little Schemer' looks like the book to learn functional programming techniques and theory/reasoning. I wanted to ask if this book requires me to learn basic Scheme first? or I …
3
votes
2answers
189 views
Using ironscheme in visual studio 2008
Though it says on the IronScheme codeplex site that a plugin is included for visual studio, I have no idea how to get ironscheme working with VS...
Is it possible? If so , how?
Thanks
0
votes
2answers
38 views
How do you break long string lines in Scheme?
For example, I want to break the long string in the below panic statement:
(panic "Truth-assignment length is longer than the number of propositions!")
I have tried
(panic "Truth-assignment length is …
1
vote
3answers
74 views
Which languages have readily available safe evaluation environments?
I'm speaking specifically of something like
the PLT Scheme make-evaluator.
It will run scheme code, but under certain conditions:
It only uses a definable amount of memory, and will quit …
0
votes
1answer
45 views
Scheme - Memory System
I am trying to make a memory system where you input something in a slot of memory. So what I am doing is making an Alist and the car of the pairs is the memory location and the cdr is the val. I need …
3
votes
1answer
96 views
Is there an equivalent to Lisp’s “runtime” primitive in Scheme?
According to SICP section 1.2.6, exercise 1.22:
Most Lisp implementations include a primitive called runtime that returns an integer that specifies the amount of time the system has been running …
0
votes
1answer
27 views
How to ‘destroy/dispose’ frame% in plt-scheme?
I want to destory my previously shown frame when a certain event is triggered.
I can't find anything regarding this in the reference manual.
10
votes
1answer
131 views
Tail Call Elimination in Clojure?
Can somebody rewrite this (plt) Scheme code into Clojure?
(define (f n)
(printf "(f ~a)~n" n)
(g n))
(define (g n)
(printf "(g ~a)~n" n)
(h n))
(define (h n)
(printf "(h ~a)~n" n)
…
0
votes
3answers
115 views
Scheme Beginner question
Hello.I am trying to put the following statement in Dr.Scheme:
{with {x {+ 5 5}} {+ x x}}
but I got an error:
expand: unbound identifier in module in: with
anyone could help me?Thanks.
2
votes
1answer
66 views
What Scheme Does Ghuloum Use?
I'm trying to work my way through Compilers: Backend to Frontend (and Back to Front Again) by Abdulaziz Ghuloum. It seems abbreviated from what one would expect in a full course/seminar, so I'm trying …
1
vote
4answers
168 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. …
1
vote
2answers
52 views
sending buffer region to the repl in emacs
hi
i'm using quack mode with mzscheme, is there a way to send(evaluate) the whole toplevel contents to the REPL window? i checked the key bindings but i don't see any commands for this, there are …
