Re: [racket-users] Can no longer interactively enter! module from the shell

2020-08-10 Thread Sam Tobin-Hochstadt
I tried a few more versions of Racket, and this broke between 6.12 and 7.0, probably due to the new expander at that time. I'm surprised that it works on Racket CS, though. Sam On Mon, Aug 10, 2020 at 10:36 AM Greg Rosenblatt wrote: > > Thanks, your output helped narrow down the issue. It

Re: [racket-users] Can no longer interactively enter! module from the shell

2020-08-10 Thread Greg Rosenblatt
Thanks, your output helped narrow down the issue. It looks like the problem is actually with the regular (non-Chez) variant. When running with Racket v7.8 [cs] I see the same (expected) behavior as you: > racket -ie '(enter! "example.rkt")' Welcome to Racket v7.8 [cs]. loading example

Re: [racket-users] Can no longer interactively enter! module from the shell

2020-08-10 Thread Sam Tobin-Hochstadt
This works for me the way you describe: ``` [samth@huor:/tmp cs-snap] r -ie '(enter! "x.rkt")' Welcome to Racket v7.8.0.7 [cs]. loading example "x.rkt"> example 5 "x.rkt"> ``` Perhaps there was a problem with 7.3 that you're running into? Can you try with the 7.8 release? Sam On Sun, Aug 9,

[racket-users] Can no longer interactively enter! module from the shell

2020-08-09 Thread Greg Rosenblatt
Given a module defined in example.rkt: ``` #lang racket/base (provide example) (displayln "loading example") (define example 5) ``` I used to be able to enter example.rkt with an interactive session from the shell like this: > racket -ie '(enter! "example.rkt")' Welcome to Racket v7.3.