Debugging a second time with breakpoints in Haskell?

When setting breakpoints in the form of haskell ghci code, they only start when the program is first run.

If I try to run the function again, no breakpoints will be called.

For example, if I follow the tutorial on deleting a point, then calling main second time, it does not cause any breakpoints (I even tried rebooting with :r ).

Any ideas?

+4
source share
1 answer

Use: l to download the haskell file a second time: a reboot downloads the file only if a change is detected.

+5
source

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


All Articles