-
I've been trying to do this a few different ways without much success. I would like to (in increasing order of complexity):
I am happy to encode the instructions for doing this in the development documentation upon learning them. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Running
|
Beta Was this translation helpful? Give feedback.
-
Unfortunately after a lot of experimentation I've found that debugging in ocaml is simply too immature to rely on for development. It is very finicky to set up and will often fail to find events or source code when setting breakpoints. So despite all the work to figure this out I am not using it. A good alternative is to use the utop REPL, which you can activate by running |
Beta Was this translation helpful? Give feedback.
Unfortunately after a lot of experimentation I've found that debugging in ocaml is simply too immature to rely on for development. It is very finicky to set up and will often fail to find events or source code when setting breakpoints. So despite all the work to figure this out I am not using it. A good alternative is to use the utop REPL, which you can activate by running
opam install utop
thendune utop
to open a REPL with all the TLAPM libraries available.