<duncan>
I'm using racket for R6RS. I've been editing scripts and then entering the REPL with their definitions with enter!. But how do I reload a script without quiting the REPL entirely?
2024-05-01
<think>
Now I try to modify it and see if it can reload the modifications ... not managed yet
<think>
Please, can somebody help me to modify the source code and reload the modification ?
<think>
Last days, when I tried to work on Pie from Little Typer, I asked here how can I modify its source code and reload it immediately after
2024-04-28
<alinsoar>
I downloaded the source code of pie (https://github.com/the-little-typer/pie) and I do not know how to create a package from the source, such that each time I modify the code to reload the modification quickly.
2022-12-01
<winny>
you might be able to use the dynamic-rerequire feature of racket to achieve the reload without depending on a particular repl's featureset
<bremner>
there is ,load ,require and ,require-reloadable
<edrx>
is there a command that I can issue to the repl to make it load or reload a file foo.rkt in the current directory?
2022-08-18
<river>
but how do i tel it that a file was edited, so it should reload its contents
2022-08-08
<samth>
it depends what you want; if you want reloading of Racket code then it's non-trivial (but see that project which does most of the work), if you want what you usually get in other systems, where you have a separate template that's not Racket code then it would be eaiser