Lengthy seq vs pseq explanation - Haskell

Welcome to the Functional Programming Zulip Chat Archive. You can join the chat here.

Georgi Lyubenov // googleson78

https://stackoverflow.com/questions/66943741/what-does-seq-actually-do-in-haskell/66965677#66965677

From Real World Haskell I read It operates as follows: when a seq expression is evaluated, it forces its first argument to be evaluated, then returns its second argument. It doesn't actually do an...