I would like to set the language in the REPL on the fly, with #lang
, not using "-I" command-line argument. But this gives me the error "read: #lang not enabled in the current context".
Is there a command-line switch that I'm missing? Or maybe a ",metacommand" I can use? The reason I need this is because I would like to be able to send an Emacs buffer to the Racket REPL, but that won't work if the file starts with #lang
.
[Edit]
I can't get
C-x C-b
to work with#lang
either.But a buffer containing
#lang
can be sent to a REPL started from Geiser withC-c C-a
. This is Switch to REPL and Enter Module from the Geiser drop down menu. If I have a buffer for bugsy.rkt:Typing
C-c C-a
gives me this in the REPL:I can then access the module in the REPL:
If I want to switch to a different module [or buffer of a file] I can use the
,enter
command in the REPL:There is an example of the
,enter
command in the documentation. Look above the Dinosaur.[Original]
According to the Racket documentation
#lang
has very simple syntax, the reader essentially bootstraps a language syntax from whatever follows the space character after#lang
. This means in some sense that#lang
is not in Racket's [or any other language's] syntax. Instead it is a implementation feature of the reader which forms part of the larger "Racket" development ecosystem.Geiser [and presumably Quack and racket-mode] handle this by parsing
#lang
in elsip before passing code to the Racket REPL. In Geiser, the work is done in geiser-racket.el.The parsing function is at line 132:
And it is called by
geiser-racket--geiser-procedure
on line 166.That may give you a starting point for rolling your own code if one of the existing Emacs modes does not meet your needs.