DrRacket (formerly DrScheme) is an IDE made to be used for the Racket programming language.
3
votes
0answers
113 views
DrRacket Contract Violation
I installed DrRacket so I can learn programming concepts using SICP. But for the past week or so, every time I launch DrRacket the console windows comes up with the following message:
fl-:contract ...
2
votes
1answer
590 views
how to run racket in emacs?
all
I don't so like Drracket because it does not have so convenient edit function as emacs, however I can only run scheme file through adding command "racket current-file.scm" in .emacs, now, I want ...
-2
votes
1answer
72 views
the sin function recursively [closed]
I want to solve this problem in need scheme of calculating the sin function recursively without using the factorial and powers!
must be in the same function call no other! Thank you!
1
vote
1answer
183 views
Perfect number recursion in SCHEME. (beginner)
Hey so I am creating a function (divides n), which is supposed to calculate the number of divisors in a number n with the help of a modulo function and a function that acts as a counter going down ...
2
votes
1answer
440 views
Scheme Binary Search Tree Error (R5RS)
I am completely new to Scheme and functional languages in general. I am trying to create a binary search tree. The format of a node is a list of three elements, the first being the value at the ...
2
votes
1answer
183 views
SCHEME recursion perfect number (beginner, hopefully easy fix)
having an issue with my perfect number function. The objective of the code is to determine if the number is a perfect number, meaning it is equal to the sum of its divisors. Ex:6. Im having trouble ...
3
votes
2answers
126 views
SICP exercise 1.5 and 1.6
In addition to question What's the explanation for Exercise 1.6 in SICP?.
So Dr. Racket (R5RS) evaluates sqrt-iter function with "if" in finite time, clearly showing normal order evaluation. But ...
0
votes
3answers
238 views
Scheme recursion function
Hey i've been stuck on the following problem and cant seem to come up with the correct function.
Write a recursive function that, given a positive integer k, computes the product k:
...
1
vote
1answer
122 views
Trying to understand why DrRacket highlights some of my cond clauses
Exercise 42 from the second edition of How to Design Programs explains that DrRacket highlights the last two cond clauses in the code below because the test cases do not cover all possible cases.
; ...
1
vote
2answers
39 views
how mzlib/etc's identity works?
In one web program , there is code fragment as follows:
(require mzlib/etc)
(define (h-handler base args)
(do-h identity))
(define (do-h cont)
[begin
(printf "~e\n" cont)
(web-read/k ...
1
vote
2answers
101 views
Dr Racket place-image not working
I wrote a simple code in Dr-Racket and it is not working. Here is the code:
(place-image (circle 5 "solid" "green")
50 80
(empty-scene 100 100))
I have selected the BSL ...
3
votes
2answers
201 views
Scheme code cond error in Wescheme
Although the following code works perfectly well in DrRacket environment, it generates the following error in WeScheme:
Inside a cond branch, I expect to see a question and an answer, but I see more ...
1
vote
2answers
108 views
Accepting words from the command prompt and converting to list of strings
I want to write a code in DrRacket that accepts a multiple words from the command prompt and does converts them to a list of string. For eg. if I enter hello how do you do in the prompt, it should ...
2
votes
1answer
123 views
convert one big quote to string/list in scheme
i have this assignment to do, where i need to parse a wrong written recursive procedure, and fix it.
for example:
This:
(let ((fib (lambda (n)
(cond ((= n 0) 1)
...
0
votes
1answer
42 views
DrRacket On-Key Error/Bug
I'm doing a project for my Comp-160 class and my on-key function is doing something odd.
(define (KEY-PRESS W key)
(cond
[(key=? key "left") (make-MOVEB
(- 15 (MOVEB-x W))
...
3
votes
1answer
238 views
Elegant code for binary addition?
I just wrote the function add-registers for binary addition of two n-bit registers in Racket (using bit-add function as a helper):
(define (bit-add x y c)
(values (bitwise-xor x y c) (bitwise-ior ...
1
vote
1answer
79 views
Scheme - What is wrong with my attempt to extend this declaration?
This is a homework question.
Question
My attempt (the whole file): http://pastebin.com/TS6mByEj
If you search let var = exp1 in body, that's the function I need to extend according to the ...
1
vote
1answer
559 views
DrRacket wont start
I'm trying to begin writing scheme in DrRacket. I had DrRacket working for a short period of time, then I got up to go get coffee, came back and now it won't start. Instead of bringing up the ...
3
votes
1answer
173 views
Reading emails using IMAP in racket
I am using the following code to get make an IMAP connection. I am want to read emails. I read this documentation
link
and could not proceed from here.
my code:
#lang racket
(define imap-server ...
2
votes
2answers
706 views
random function in DrRacket
I am currently using DrRacket on Mac OS X and choose the language "R5RS", but when I enter
(random 100)
I get the error message:
reference to undefined identifier: random
What's the problem ...
1
vote
1answer
119 views
Keyboard shortcut to switch windows
I am using drscheme or drracket for scheme. I have found this and this for their keyboard shortcuts, but C-F6 does not seem to work...
I would like to switch the cursor between the two ...
3
votes
1answer
694 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
...
5
votes
1answer
198 views
Show the type of a function
But in Racket, the interpreter does not show the type:
> cadr
#<procedure:cadr>
Is there a way to show the type of a function?
0
votes
1answer
353 views
Having trouble adding every other odd element in a list in Scheme
I'm trying to add all the odd elements in the list.
I can't figure out what is wrong. It will work for a list of all odds, but causes an error if there is even a single even number -- it says that ...
3
votes
1answer
886 views
Including files from within racket/scheme
I'm trying to use drracket to work thru the exercises in "How To
Design Programs 2nd Ed".
A number of the exercises in this build up on the answers to previous
questions, so I would like to include ...
1
vote
2answers
282 views
How does HtDW correlate with HtDP?
So there's a companion PDF to How to Design Programs (HtDP) called How to Design Worlds (HtDW). And I'm wondering how much of HtDP do I have to read/know to be able to start reading HtDW? Are the ...
4
votes
1answer
530 views
Why can't I make two make function calls in function body?
So I'm going through the first chapter of How To Design Programs 2nd Edition. I believe I made pretty good progress. But there's a "suggestion" to add another graphic to the grid. Every time I try I ...
1
vote
1answer
185 views
Debugging multiple files in DrRacket
I am using DrRacket to debug scheme code using the R5RS language. I am trying to debug over multiple files imported using the load function. I opened both files as the instructions on the Dr Racket ...
4
votes
2answers
471 views
Including an r5rs file into another file in racket
One of my courses is using DrRacket for some sections of SICP. We're working on the metacircular evaluator and I have an R5RS code file (set-car! and set-cdr!) which I need to use with my work. ...
0
votes
4answers
656 views
Build list from number and number or list and number in scheme
I'm trying to create a list by adding a number to an existing list. The problem is that the existing list is not necessarily actually a list. It could be either an empty list ((list )), just a number, ...