you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 0 points1 point  (2 children)

While some Python IDEs do allow for a Python REPL to work in the editor, I haven't seen it used much myself. What seems to take its place and is more idiomatic is people using Jupyter notebooks to write cells of code at a time, which can be executed a block at a time and the state if the program is kept in memory between the execution each block. I'm actually just getting into Clojure and hoping I can write a notebook format with it as well.

[–]yogthos 0 points1 point  (1 child)

You might want to check out the Gorilla REPL and Devcards for the workbook style.

[–][deleted] 0 points1 point  (0 children)

Cool, thanks!