How to execute Julia script step by step?

Is there any way in Julia to execute an existing script step by step in REPL, meanwhile having the ability to modify / build arrays? (As with Matlab debugging)

Note. I especially ask for this for version 0.4, for which, I hope, a new debugging system will be introduced.

+6
source share
1 answer

You have several options:

  • The debug package provides step-by-step debugging. However, it has not yet been updated to 0.4.
  • Juno provides some useful functions for executing certain lines and includes built-in graphing
  • Copy / paste script in REPL

Indeed, there is a more general debugger in the work, but it cannot be said when it will be ready.

+8
source

Source: https://habr.com/ru/post/982503/


All Articles