I learned about Haskell. I am importing a module Options.Applicative, for example:
import Options.Applicative ((<>), Parser)
import qualified Options.Applicative as P
However this returns
Module ‘Options.Applicative’ does not export ‘(<>)’
What is wrong with that? This documentation suggests that this should be possible.
source
share