Some of Haskellโs gotchas:
Gotcha | Recommendation |
---|---|
Strings | Understand |
Unicode Normalization | https://github.com/srid/neuron/issues/611 |
Functions to avoid | haskell-dangerous-functions; use Relude |
ghcid ghost threads | Track all threads; or use race_ |
Ratio type | The Hidden Dangers of Haskellโs Ratio Type |
Laziness | Comparing strict vs lazy |