Tagged Questions
1
vote
1answer
36 views
Simple Nested Evaluations in DrRacket
so I'm working on some practice problems for my programming languages class, and one of the assignments is to create a script "MyEval" which allows you to do simple nested addition and multiplication. ...
3
votes
2answers
44 views
Modification of the basic if expression in Scheme. Why does it go into an infinite loop?
In Scheme, I modified the basic 'if' command as:
(define (modified-if predicate then-clause else-clause)
(if predicate
then-clause
else-clause))
And then I defined a simple factorial ...
2
votes
2answers
100 views
Summing very large numbers in Racket
So I am looking to sum up the numbers between zero and one hundred million. This code works extremely well for ten million, executing on my machine in about 3 seconds. However as soon as I attempt to ...
-1
votes
2answers
120 views
implement length in r5rs scheme (drracket) [closed]
Is it possible to implement the R5RS scheme function "length" using the car and cdr family of functions?
If so could someone post the implementation?
Thanks,
1
vote
1answer
272 views
Lambda Recursion in Dr Racket
Im trying to created the function "apply N times" in Dr Racket but Don't know where I'm going wrong. My code seems to be correct but clearly I'm missing something. Printed below is the code and the ...
3
votes
1answer
695 views
mcons in dr racket
I'm having trouble reading output from dr racket. By default it displays lists using mcons. For example, sicp exercise 2.32 produces:
> (subsets (list 1 2 3))
(mcons
(mcons
'()
(mcons
...