Hi all,
when i execute cabal repl i get this:
<interactive>:1:8: error:
Not in scope: ‘System.Directory.getCurrentDirectory’
No module named ‘System.Directory’ is imported.
because my ghci.conf has
:def pwd (\_-> System.Directory.getCurrentDirectory >>= print >> return "")
Does anyone know how i can include System.Directory somehow even though its not used in my cabal project?
--