Comment on The Haskell HeapComments−yummyfajitas15yThis is what make it difficult to understand the performance profile of a Haskell program. Take a look at the book Real World Haskell for a taste of how ugly it can get.http://book.realworldhaskell.org/read/profiling-and-optimiza...Luckily Haskell does give you the ! operator (e.g., !x), which tells the compiler to evaluate the variable.
Comments
This is what make it difficult to understand the performance profile of a Haskell program. Take a look at the book Real World Haskell for a taste of how ugly it can get.
http://book.realworldhaskell.org/read/profiling-and-optimiza...
Luckily Haskell does give you the ! operator (e.g., !x), which tells the compiler to evaluate the variable.