[racket-users] Using Chez Scheme libraries with Racket CS?

2020-10-08 Thread primer
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

Re: [racket-users] Using Chez Scheme libraries with Racket CS?

2020-10-09 Thread primer
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

[racket-users] Automated method for making racket package installs consistent?

2020-10-10 Thread primer
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

Re: [racket-users] Automated method for making racket package installs consistent?

2020-10-11 Thread primer
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

[racket-users] Problems using (debug-repl) with emacs racket-mode

2020-10-14 Thread primer
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

[racket-users] curly-fn language syntax not recognized in the repl

2020-10-19 Thread primer
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

[racket-users] Why ~a, ~s, and ~v?

2020-10-26 Thread primer
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

[racket-users] "raco pollen render" fails sporadically

2020-11-13 Thread primer
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