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
You can enable the Strict pragma in a module, which will cause everything to be strict by default.
Strict
https://ghc.haskell.org/trac/ghc/wiki/StrictPragma