Call stack trace in haskell with variables

Is there a way to track haskell progress step by step? I mean, I want to see every function call with variable values. Something like prolog / guitrace.

+4
source share
1 answer

The closest I know today is HTrace , which uses indentation to indicate call depth. This is still far from what you are looking for, but it can be very useful for checking intuition.

+2
source

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


All Articles