DrRacket (formerly DrScheme) is an IDE made to be used for the Racket programming language.
0
votes
0answers
5 views
Dr Racket fails when trying to create ]
I'm playing around a bit with DrRacket in the BSL language.
When I'm trying to create a comment like so:
;; Hi(10, 50]
The program fails in the moment when typing the ]. I can only end it via ...
0
votes
1answer
28 views
get image's x y when canvas was scrolled
I am using DrRacket 5.3.4
There is a frame f, canvas c
And I set scrollbar to canvas.
I want to get image's coordinate
(not main window, frame's upper-left-relative coordinate)
how can I get ...
4
votes
2answers
82 views
About “cond” in scheme
I want to be able to do this. For example, this is my code:
(cond [true AA]
[else BB])
In AA, I want it to do 2 things. 1 is to set the value of a global variable, and then return a ...
1
vote
1answer
44 views
insert an image into a frame x y coordinates
Hi I would like to know how to insert an image into a window but with coordinates.
(define ventana (new frame%
[label "Ba"]
[width 1100]
...
-2
votes
0answers
45 views
How to write simple BNF Expression correct?
Writing a BNF for a simple List Expression (LE) language: In class we have seen the grammar for AE — a simple language for “Arithmetic Expressions”. Write a BNF for “LE”: a similarly simple language ...
0
votes
2answers
50 views
Passing multiple variables (image->color-list) as a procedure argument RACKET
I am trying to create a procedure which will accept two colour-lists. Because this procedure is within another procedures(local). I need to convert image->color-list as I am passing the arguments. I ...
1
vote
1answer
48 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. ...
0
votes
2answers
39 views
Regular addition or multiplication operators in scheme
How can I write a scheme program that makes regular sums. In scheme 2+2 is written (+ 2 2). The program I have to make should make (2 + 2) possible is scheme.
-2
votes
0answers
29 views
Scheme : Check if there are more than 2 sublist in a row Altlis and altlis2 in
I'm supposed to define Altlis and I believe the altlis2 should check that there are no more than two sublist or no more than two subatoms in a row. If it is then it returns false If it has atom, list ...
3
votes
2answers
49 views
DrRacket EOPL Scheme output
I am working through the EOPL Scheme exercises using DrRacket in Windows 7. When I switch from #lang racket to #lang eopl, the output from the definitions pane no longer shows up in the interaction ...
1
vote
2answers
73 views
Binary tree inorder traversal Racket
I am trying to write the algorithm for inorder traversal for a binary tree using RACKET/DR. RACKET
(define (print-records node number)
(cond
[(not (empty? node-left))(print-records ...
1
vote
2answers
35 views
Accessing a variable field within a node
Hi I am new to Racket using it for a binary tree structure.
Using the following structure
(define-struct human(age hight))
I have created the following object/variable/human
(define ...
1
vote
3answers
54 views
Scheme's “expected a procedure that can be applied to arguments”
I use DrRacket. I have problem with this code:
(define (qweqwe n) (
(cond
[(< n 10) #t]
[(>= (lastnum n) ...
1
vote
3answers
54 views
Intertwine two lists
How do I merge two lists that are equal length, creating a list of intertwined elements?
For example, lists 2, 4, 6 and 1, 3, 5 should produce 2, 1, 4, 3, 6, 5 in racket.
I am having a difficult ...
0
votes
1answer
59 views
Selecting items from List-box in Scheme
There is a list-box which has three columns. I'm trying to get all the row of a index (item) which are selected.
The problem is that i can't get the whole row. The following function returns just the ...
0
votes
1answer
37 views
decomposing a list of points in drRacket
I have a list of points with the form :
((1.10) (2.980) (3.567) (4.0)...(1000.87 ))
And, to be able to use them in the function plot, I would like to extract the two sublist with the x and the y ...
3
votes
2answers
50 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 ...
1
vote
1answer
28 views
Compatibility issue with drRacket: “require” and “frame”
I wonder if my drRacket has a problem :
I see example on the internet of programs but when I put them in Dr racket, it considers them as an error.
It first append when I write (require racket/base) ...
1
vote
2answers
57 views
Get the selected text-field% in a Racket GUI
I have an application that uses the The Racket Graphical Interface Toolkit to create a GUI.
I also have a frame with several fields, that is created with the code below:
#lang racket
(require ...
2
votes
2answers
42 views
creating a procedure which takes list as an argument
I am a newbie in scheme and I am trying to write a procedure which always finds a list's tail's first element. This is important in recursive calls.
Here is my procedure :
(define second (lambda ...
1
vote
1answer
38 views
Scheme (DrRacket) - cond statement does not work with recursion
I am learning Scheme using DrRacket R5RS. I thought that I was nailing down the concepts, but I cannot get this simple recursion exercise to work. I think that it is a bug in DrRacket, but I'm not ...
3
votes
2answers
54 views
Drawing onto canvas% element
I have a problem while trying to draw onto a canvas GUI element.
I create a frame, a canvas and try to draw on the dc context of the canvas with the draw-line method, but nothing happens. The frame ...
1
vote
1answer
60 views
DrRacket autocomplete does not see functions defined in my source code
I am using Racket and DrRacket for a small project (I am trying to learn both and using them to teach a friend of mine some functional programming).
I have just discovered the autocomplete function ...
1
vote
1answer
97 views
How do I create and save a Scheme program with .scm file extension using DrRacket?
All I am able to make in DrRacket is racket document files, but I need those files to have a Scheme file extension or more specifically .scm
How would I be able to do this?
1
vote
1answer
43 views
Number in Sequence that a pair falls in
I want to find what number in the sequence a pair falls in. I am trying to write a procedure that verifies that f(1, n) = 2n - 2 and f(m+1, n+1) = 2f(m, n). It works when I call (number 99, 100), ...
2
votes
2answers
71 views
scheme equivalent to ruby debug 'p' statement
I'm trying to debug some scheme code. It would be helpful if I could print the contents of a variable or binding out.
Is there an equivalent to the 'p' statement of Ruby in Scheme.
In particular, ...
0
votes
0answers
33 views
Dr Racket Data Base SEARCH and SELECT functions
Suppose I've got a database defined in Dr Racket
(define db
((john lives-in new-york)
(mary attends (event concert) (artist depeche-mode) (date 25 june 2003) (location new-york))
(mike plays ...
1
vote
1answer
38 views
Scheme: Number of occurrences in a list
I'm trying to write a Scheme function called "p" with one parameter X which is a list of letters. the function should return true if the number of a's is one less than the number of b's. This is what ...
2
votes
2answers
103 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
vote
2answers
63 views
removing list with a list
I understand how to remove elements when there are list and a variable, but is there a way to remove elements from a list using another list? EXAMPLE: (list 1 2 3 4 5)(list 1 2 3) yields (list 4 5)
2
votes
1answer
63 views
Extracting only numbers within a list
Is there a way to extract only numbers within a list?
I'm using the beginner language package so I cannot use filter which is a bummer.
(list a 1 2 b d 3 5) => 1 2 3 5 etc
I want to use this as a ...
0
votes
1answer
180 views
newline in scheme (racket)
it is possible to have a new line when you write with "display" like
(display "exa \n mple")
But, the problem is that there is no any code to have a new line in strings? Like:
"exa \n mple"
...
2
votes
2answers
63 views
Using lambda racket
Design a function that consumes a [Listof Number] and checks if 0 is in the list.
I want to figure this out using lambda. I've been reading the book, and this is what I've came up with so far. I ...
1
vote
1answer
76 views
Partitioning a list on Scheme
How would i go about making a partition function that would take a number and a list to partition the list into smaller lists of lists whose size is given by the number
so that
Partition 3 '(a b c d ...
2
votes
1answer
60 views
Why return empty and not the list itself?
Chapter 4, HtDP.
Note: I've seen this in other questions as well.
Is it for a clarity reason or an algorithmic reason, that I am unaware of, that the base case returns empty instead of the list ...
1
vote
1answer
68 views
Why won't racket obey my all setting in string-replace
I found the Racket documentation for the string-replace function to be vastly disparate from how the racket read-eval-print loop actually works. The docs say that you can put a keyword after ...
0
votes
2answers
117 views
How can I improve this auxilary function in Racket?
I'm working in HtDP, Chapter 4 using the BSL language.
The problem I was working on is:
Exercise 136: If you run main, press the space bar (fire a shot), and
wait for a good amount of time, the ...
0
votes
1answer
23 views
drracket language
is there a built-in function in drracket which allows me to check if a specific data is included in a string?
For example I want to get back a result "true" for any string with the letter "a" in ...
1
vote
2answers
48 views
racket list using member
I have a little problem while doing some assignment work due in about 10 hours.
I am supposed create a function has-vowels? which consumes a strings and returns true or false depending on if the ...
-3
votes
1answer
38 views
Drracket lists adding only numbers while ignoring other data types [closed]
Hello I need to create a function that consumes a list that sums up only numbers within the list and ignores any other type of data (strings etc)
Example (adding-only-numbers (cons 5 (cons "b" ( cons ...
0
votes
2answers
78 views
scheme function checking constants/vowels
How to create a function in Dr. Racket consumes a string str and produces true if str has at least a vowel and false if str has no vowels.
The vowels are the following set of characters: A, a, E, e, ...
1
vote
1answer
41 views
How am I supposed to create rows and columns of images?
First, I'm going through HtDP 2nd Edition and am using the BSL language pack.
I'm currently on Exercise 131 and this is what it says:
Exercise 131: Design two functions: col and row.
The function ...
4
votes
3answers
92 views
Scheme Scoping (define and let)
So I know that in Scheme define is for dynamic scoping and let for static scoping, yet the following thing confuses me:
If I have
(let ((x 0))
(define f (lambda () x))
(display (f))
(let ((x ...
0
votes
0answers
59 views
DrRacket error while debugging scheme
During playing with scheme in drracket (5.3.2 on win7), quite big problem occured. After few days I started to use debuggin tool, it was splendid while finding errors, but it doesn't work anymore on ...
1
vote
1answer
102 views
How to change the interact language back to English from Simplified Chinese in DrRacket
Just getting start using DrRacket, but it automatically set the environment in Simplified Chinese after I finished installing it.
I've seen the tutorial that is included with drracket:
C:\Program ...
1
vote
1answer
230 views
Running code from SICP section 3.5.4 with DrRacket
I'm having trouble running an example code from SICP (Structure and Interpretation of Computer Programs) Section 3.5.4 (Streams and Delayed Evaluation); the SICP section can be found here: ...
0
votes
4answers
95 views
True / false evaluation doesn't work as expected in Scheme
I'm trying to compare two booleans :
(if (equal? #f (string->number "123b"))
"not a number"
"indeed a number")
When I run this in the command line of DrRacket I get "not a number" ...
1
vote
1answer
124 views
in DrRacket, DrJava, DrPython, what does “Dr” stand for? [closed]
Currently there are some IDEs for some programming languages like DrRacket (DrScheme), DrJava and DrPython. Anyone knows What does the prefix "Dr" stand for?
-1
votes
2answers
121 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,
0
votes
1answer
82 views
DrRacket programming
I was given this in a assignment:
; subst: [Listof Value] [Listof Name] SExp -> SExp
; substitute the corresponding value for each listed variable name in s
; leave all other names in s unmodified
...

