Is it possible to turn off lazy evaluation in Haskell?
Is there a specific compiler flag of library to facilitate this?
I wanted to try something new with
There are a number of ways to turn a lazy thing strict. You can:
seq
($!)
BangPatterns
More information here.