<div class="gmail_quote">Hi Erik,<br><br>On Fri, Aug 13, 2010 at 1:32 PM, Erik de Castro Lopo <span dir="ltr">&lt;<a href="mailto:mle%2Bhs@mega-nerd.com">mle+hs@mega-nerd.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">


Since the files are large I&#39;m using ByteString, but that leads me<br>
to wonder what is the best way to handle clashes between Prelude<br>
functions like putStrLn and the ByteString versions?<br>
<br>
Anyone have any suggestions for doing this as neatly as possible?<br></blockquote></div><br>Use qualified imports, like so:<br><br>import qualified Data.ByteString as B<br><br>main = B.putStrLn $ B.pack &quot;test&quot;<br>

<br>Cheers,<br>Johan<br><br>