
17 Sep
2016
17 Sep
'16
8:12 a.m.
On 17/09/16 09:00, Nikita Karetnikov wrote:
Is anyone aware of a source level debugger that can be used with GHC? That is, something integrated into an editor (as a plugin, perhaps) that can highlight the line being executed, show locals, etc.
ghci is a interactive debugger also, it isn't that useful in haskell as you reduce expressions instead of evaluating step by step a set of commands. You can check out on the repl with :? the commands (read for the ones with :step :next section).