Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Trace of call stack in haskell with variables

Is there anyway to trace haskell execution step by step? I mean i wanna see every call of function with variable values. Something smilar to prolog trace/guitrace.

like image 946
user2184057 Avatar asked Jun 29 '13 21:06

user2184057


1 Answers

The closest I know of today is HTrace which uses indentation to denote call-depth. It's still a far cry away from what you're looking for, but it can be very useful for checking intuition.

like image 118
J. Abrahamson Avatar answered Oct 27 '22 00:10

J. Abrahamson