What is a good way to debug haskell code?

前端 未结 4 931
野性不改
野性不改 2021-02-01 03:02

I have used the ghci debugger but would really prefer if it was somewhat integrated with a text editor to simplify the process of setting breakpoints. It should probably not str

4条回答
  •  萌比男神i
    2021-02-01 03:37

    As a side note, be aware that Debug.trace will NOT be your friend when debugging multithreaded programs.

    Testing is the way to go in the long run.

提交回复
热议问题