Is anywhere simple method to compute time of function execution in Haskell?
Thank you.
|
Simplest things is to just do ':set +s' in ghci, and then you can see the execution time of anything you run, along with memory usage. |
|||
|
|
|
The |
|||
|
|
|
See if http://hackage.haskell.org/package/timeit suits your needs. |
|||
|
|
head [1..], which takes the first element of an infinite list. – gatoatigrado Jul 20 '11 at 22:16whnfandnffunctions. – alternative Jul 20 '11 at 22:35