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. loading example > example ; example: undefined; ; cannot reference an identifier before its definition ; in module: top-level ; [,bt for context] > ,bt ; example: undefined; ; cannot reference an identifier before its definition ; in module: top-level ; context...: ; eval-one-top12 ; /Applications/Racket v7.3/share/pkgs/xrepl-lib/xrepl/xrepl.rkt:1477:0 ; /Applications/Racket v7.3/collects/racket/repl.rkt:11:26 The module still seems to be loading, but my interactive session hasn't started in the module context. Racket 6 used to start my interactive session in the module context. Was this change in behavior intended? Is there a new way to achieve what I'm trying to do? -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/racket-users/bbaf1e21-52e8-4514-9b8c-20db6357fb40o%40googlegroups.com.

