I'm new to Racket and have not yet played with Racket CS. My question is
whether the Chez Scheme libraries are available. For example, is it
possible to do something like (require chezscheme) and then use
(fork-thread ...) to create a native thread?
--
You received this message because you a
Great! Thanks for the pointer to the docs.
On Friday, October 9, 2020 at 6:04:31 AM UTC-7 Matthew Flatt wrote:
> At Thu, 8 Oct 2020 22:38:04 -0700 (PDT), primer wrote:
> > I'm new to Racket and have not yet played with Racket CS. My question is
> > whether the Chez
If I have an an install with packages X and Y installed, and a second
install with packages Y and Z installed, is there a way to use raco.exe or
some such to get X, Y, and Z installed on both machines without having to
figure out "by hand" which packages are missing from each install?
--
You
On Sunday, October 11, 2020 at 1:35:24 AM UTC-7 William J. Bowman wrote:
> I'm not sure what you're asking: is your question equivalent to figuring
> out which packages are explicitly installed?
>
That's part of the problem. I have several computers, each with racket
installed. I'd like to g
I'm trying to use (debug-repl) in the following simple program:
#lang racket
(require debug/repl)
(define (add a b)
(debug-repl)
(+ a b))
(add 4 5)
If I run this in Dr. Racket, then I get a repl prompt as expected.
However, I'm using Greg Hendershott's racket-mode for emacs, where it blo
If I run this program:
#lang curly-fn racket
(map #{/ 1} '(1 2 3))
I get the expected result in the repl. But in the repl after the run, if I
type:
(map #{/ 1} '(1 2 3))
I get an error:
#%namespaced: undefined;
cannot reference an identifier before its definition
Is there a way to mak
I'm reading the documentation about formatted output where it says:
~a or ~A displays the next argument
~s or ~S writes the next argument
~v or ~V prints the next argument
I can't help thinking these would be more intuitive if they were spelled
~d, ~w, and ~p.
Perhaps I can remember them better
I'm having an issue with getting a failure with "raco pollen render" in
directory mode using a poly source file. See below for a command line
history demonstrating the behavior.
The call usually fails but sometimes succeeds. I have not been able to
find a reliable workaround to the issue. S
8 matches
Mail list logo