Racket is an extensible multi-paradigm programming language descended from Scheme.
4
votes
1answer
53 views
Stop and copy garbage collector in two phases
When implementing a stop and copy garbage collector as a pair, I need two memory banks (the old one and a free new one). One memory bank consists of the-cars and the-cdrs. So basicly when I make a new ...
2
votes
1answer
51 views
Memory footprint of racket data and datastructure
Has anyone got any idea if there is a function that returns the size of some datastructure, sys.getsizeof in python is an example, in racket?
2
votes
3answers
45 views
GUI Table using in Racket / variable parameters using list-box%
I'm currently trying to create a a grid of information in Racket using the Racket Graphical Interface Tooling. The only real table that is available is the list-box% (link to reference)
To fill the ...
1
vote
2answers
50 views
Scheme / Racket Vector in Vector tranformation
I'm having a problem transforming a vector like this:
#(#(1 2 3)#(1 2 3)#(1 2 3)#(1 2 3)#(1 2 3)))
Into one like this:
#(#(1 1 1 1 1) #(2 2 2 2 2) #(3 3 3 3 3))
I wrote a piece of test code but ...
3
votes
2answers
37 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 ...
2
votes
2answers
55 views
What Racket function can I use to insert a value into an arbitrary position within a list?
I know this is trivial to implement, but I want Racket to live up to it's "batteries included" promise. I am looking for a function that works something like this:
> (define (between lst item ...
3
votes
1answer
62 views
Idiomatic Nested looping in racket/scheme
Has anyone got any idea what the idiomatic method for nested looping on numbers within a range is in Racket/Scheme? In Python we have:
for i in range(numb1):
for j in range(numb2):
What would ...
1
vote
2answers
47 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 ...
0
votes
2answers
66 views
Equivalent to SRFI 42's :while in Racket's comprehensions
The eager comprehensions in SRFI 42 can have a :while clause that runs a generator while some condition holds, for example: (list-ec (:while (:range i 10) (< (* i i) 50)) i) returns the list (0 1 2 ...
2
votes
1answer
42 views
Racket Macro to auto-define functions given a list
I want to auto-generate a bunch of test functions from a list. The advantage being I can change the list (e.g. by reading in a CSV data table) and the program will auto-generate different tests on ...
3
votes
2answers
49 views
Using one set of unit tests on many different files in Racket
I'm looking for advice on how to structure my Racket programs. Currently, I have about 5 different versions of the program and each program has the same unit tests (RackUnit) just added to the end of ...
1
vote
2answers
34 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
1answer
47 views
Changing a function into CPS style
We were asked to write a procedure that when given a list it will replace the first occurrence of a given element and only the first, but the catch is to write in CPS style.
We were able to write in ...
-1
votes
2answers
61 views
SICP example doesn't work on Racket
I am trying an example on Chapter 4 of SICP (part of writing the LISP interpreter)
(define (definition-value exp)
(if (symbol? (cadr exp))
(caddr exp)
(make-lambda
...
0
votes
0answers
48 views
make-lambda function alternative in racket
I am learning scheme by reading SICP.
One function in SICP measured is
(make-lambda ...)
I am using Racket as the scheme interpreter. However Racket doesn't have make-lambda function built in. ...
-4
votes
1answer
40 views
scheme language ( extract and mix of cards)
Please can anyone help me with this functions as fast as possible
They are in scheme language
write the function extraire_ieme_cartes that retrieves the ith card of a list of cards given as a ...
-1
votes
2answers
75 views
Scheme doing more than one job in one if condition
I am trying to do more than one task in one if condition, here is my code:
(define (dont-tolerate-fools hist0 hist1 hist2 count)
(cond ((> 10 count) 'c)
((< 10 count) (soft-tit-for-tat ...
1
vote
2answers
62 views
How to implement a try-catch block in scheme?
I'm trying to implement a try-catch block in scheme using (call-cc) method but i'm not sure how it can be used for that. I could not find any example.
And found examples contains just error-handling ...
0
votes
1answer
33 views
strange behavior of sort in racket
I have the following defined:
(struct type (parent dirty) #:mutable #:transparent)
(define types (make-hash))
(define (add-key predicate parent)
(begin
(hash-ref! types ...
2
votes
2answers
60 views
scheme pattern checking if it is a number
I am a scheme beginner and
I am wondering how to explain this piece of scheme code? Looks so preculiar!
(define (calc2 exp)
(match exp
[(? number? x) x]))
...
1
vote
5answers
56 views
Converting an s expression to a list in Scheme
If I have an s expression, for example '(1 2 (3) (4 (5)) 6 7), how would I convert that into a list like (1 2 3 4 5 6 7)? I basically need to extract all of the atoms from the s expression. Is there a ...
2
votes
3answers
80 views
Replace first occurrence of symbol in (possibly nested) list
I would like to replace just the first occurrence of a certain symbol (say '-) with another symbol (say '+) inside a list that may contain lists. That is to say,
'(((-))) would turn into '(((+)))
...
1
vote
3answers
46 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
1answer
32 views
how to create a macro in racket where a list becomes the args of said lambda?
How would I go about in doing a define-syntax-rule that accepts a list as arguments and a list (or a quote, in case it is a single element) as body of a lambda?
i would like to do something like:
...
1
vote
3answers
48 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 ...
2
votes
1answer
47 views
How to convert sql-timestamp to string in Racket?
The closest thing I came up with looking at the documentation was
(define (sql-datetime->rfc2822 datetime)
(let ([dt (sql-datetime->srfi-date datetime)])
(date->string dt ...
0
votes
1answer
53 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
2answers
40 views
a strange error in racket “no expression after a sequence of internal definitions”
I have the following code:
(define (play-loop strat0 strat1 strat2 game-limit)
(define (play-loop-iter strat0 strat1 strat2 count history0 history1 history2 limit)
(cond ((= count limit) ...
2
votes
1answer
47 views
Racket, access structure fields in function
I have a fold function that I want to use on a number of different structures, each structure with arbitrarily named fields. Thus, I need to tell the fold function what kind of structure was passed ...
0
votes
3answers
53 views
random procedure wants exact integers in scheme
I am given a real number which is between 0 and 1. This is my niceness-factor. This factor is a kind of probability. I mean if it is 0.2, it means that something will be happen with the probability of ...
1
vote
1answer
40 views
Using cons, list, append in Scheme
I need to write a code that take a element and add to list that give as input, and return an new list instead of old list.. after than i will do recurssion and i need new list... below code is working ...
2
votes
3answers
46 views
Racket hash equality
I've been playing around with Racket and Rackunit. I'm in the process of porting my little static site generator to Racket and writing unit tests and ran into this weird problem.
#lang racket
...
0
votes
1answer
35 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 ...
1
vote
1answer
37 views
Racket R5RS “no #%app syntax transformer is bound”
I'm trying to execute the following R5RS code in Racket:
#lang r5rs
(define boo 100)
(define lib `(begin 88 99 99 ,boo))
(eval lib (interaction-environment))
However this results in the error:
...
3
votes
2answers
76 views
Finding Racket gui apps comparable to commercial software?
I know Racket supports the creation of gui apps, games, etc. I would like to look at some apps built with Racket that are comparable to things you might buy commercially -- something on par with ...
1
vote
2answers
49 views
how to use “cond” in scheme?
I am trying to implement a game theory algorithm by using scheme. I wrote a code piece which is named tit for two tat. Here is the code:
(define (tit-for-two-tat my-history other-history)
(cond ...
1
vote
2answers
52 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
57 views
R6RS Library body: definition after expression
Consider the following code:
#!r6rs
(library
(test)
(export)
(import (rnrs))
(define a 5)
(begin
(define b 4)
(+ 3 b))
'cont
(define c 5)
'done)
From the R6RS Report 7.1:
A ...
0
votes
2answers
69 views
Dr Racket total sum with recursion
I am new to dr racket, am trying to write one function that returns true if
list contains 3 elements
If the sum of the sub-list of three elements equals the sum of the remainder of the
list, ...
3
votes
3answers
60 views
Error with define in Racket
I just discovered Racket a few days ago, and I'm trying to get more comfortable with it by writing a little script that generates images to represent source code using #lang slideshow.
I know that ...
2
votes
2answers
39 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 ...
3
votes
3answers
89 views
Racket with-hash macro and rename transformers
I created this:
(define-syntax (with-hash stx)
(syntax-parse stx
[(_ obj:id ((~or key:id [new-key:id hash-key:id]) ...) body:expr ...+)
#'(let ([key (hash-ref obj 'key)] ...
...
2
votes
1answer
43 views
Cloning objects in Scheme
I was trying to clone an object in Scheme, something like
(define o1
(new cl%
[a 1] [b 2]))
and then
(define o2 o1)
When I used set! on o1, it changed o2 along with o1. But I want ...
2
votes
2answers
40 views
Racket scheme define constant in function
I am beginer to scheme. I have function like this:
(define (getRightTriangle A B N) (
cond
[(and (integer? (sqrt (+ (* A A) (* B B)))) (<= ...
0
votes
1answer
43 views
Manipulating the Scheme evaluator
I'm trying to manipulate the Scheme evaluator and write a make-unbound! procedure that unbinds a variable from the environment:
(define (make-unbound! var env)
(let ((frame (first-frame env)))
...
3
votes
2answers
52 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
2answers
42 views
scheme' conditional expression and evaluation order
thinking following expression:
(cond (p1 (some_complex_expression1))
(p2 (some_complex_expression2))
(p3 (some_complex_expression3))
...
(else (some_complex_expressionN)))
...
3
votes
2answers
53 views
Racket Macro Ellipsis Syntax
I have a macro that's working when one argument is passed, and I'd like to expand it to accept n number of arguments using ..., but I'm having trouble figuring out the syntax.
The macro accepts ...
2
votes
1answer
61 views
Using call/cc to make a loop. let vs begin
Both of the following code blocks should (in my mind) be infinite loops
This works
(define call/cc call-with-current-continuation)
(define l 0)
(define i 0)
((lambda ()
(call/cc
(lambda (k)
...
1
vote
1answer
51 views
How to use Racket in terminal?
I'm having no luck finding a way to have this work the way I'd like it to, so if anyone could help that would be so greatly appreciated.
What I'd like is to be able to do this on Terminal:
> ...


