could not import Text.Reges.Posix in a haskell script [closed]
i have a strange problem, when I'm in ghci and type:
:module Text.Reges.Posix
the module will be loaded and i can use it, but when i write a script (and try to load or compile it) with
import Text.Reges.Posix
开发者_开发百科
i get the massage:
could not find module: Text.Reges.Posix
what can i do?
try Text.Regex.Posix
-- you're spelling it wrong.
精彩评论