> Hello,
> 
> what does it mean:
> 
> Variable definition clashes the import.

It means that you are importing a module that declares
something with the same name as one of your own definitions.

For example the prelude defines

   map f x = . . .

so if you attempt to define something called map, the names
would clash.

You can either choose a different name or use the
"qualified" import for whichever module defines the name
that clashes.

  J�n


-- 
J�n Fairbairn                                 [EMAIL PROTECTED]
31 Chalmers Road                                         [EMAIL PROTECTED]
Cambridge CB1 3SZ            +44 1223 570179 (after 14:00 only, please!)



_______________________________________________
Haskell-Cafe mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/haskell-cafe

Reply via email to