If i import these 2 packages in a project:
import Network.HTTP
import qualified Network.URI as NU
I get:
testNetw.hs:7:18:
Ambiguous module name `Network.URI':
it was found in multiple packages:
network-uri-2.6.0.3 network-2.4.2.3
I’am using the latest 32 bits haskell platform on Windows 7 64 bits.
I need the NU.parseURI function. What can I do?
Kees