Closed eerohele closed 2 years ago
Maybe rethink approach: in the REPL, instead of blocking on reader, block on concurrent queue instead waiting for eval context, etc.
This will break sending multiple forms at once, because the REPL will wait for an eval context after each form. Back to the drawing board.
Fixed in v0.14.1.
Repro:
Eval the sleep first, then
(f 1)
, ns isfoo.bar
when it should bebaz.quux
.Maybe rethink approach: in the REPL, instead of blocking on reader, block on concurrent queue instead waiting for eval context, etc.