6 ms·
This works great for any Scheme, I think: https://docs.racket-lang.org/drracket/ https://docs.racket-lang.org/drracket/
by herdrick 4y ago
This works great for any Scheme, I think: https://docs.racket-lang.org/drracket/ https://docs.racket-lang.org/drracket/
- bmitc 4y agoIt works for Schemes that DrRacket supports or ones implemented via #lang. I don't think Chez Scheme is one of those.
- rscho 4y agoThere's actually a plugin that lets one use Chez directly from DrRacket.
- rawoke083600 4y agoLast time I checked, it didn't have true REPL development ? i.e you couldn't "just eval" a function ?
- avhon1 4y agoDrRacket has had a REPL at least since 2013 (which was when I first used it).
- bmitc 4y agoI think the commenter meant sending a specific function definition to the REPL, like in Common Lisp, Clojure, or F#'s REPLs, without re-evaluating the entire file, like how DrRacket does it. I think Racket has some functionality that allows it though, and I think the Racket Emacs mode supports it. I am not aware of how to do it with DrRacket.
- rawoke083600 4y agoYes exactly ! Sory for confusion.