2
votes
1answer
226 views

Bytestring linking in ghc

Consider the following simple code: import Crypto.Hash.SHA1 (hashlazy) import qualified Data.ByteString as BS main = return () I installed cabal install --global bytestring and then I obtain (on a ...
10
votes
4answers
2k views

Using Haskell to output a UTF-8-encoded ByteString

I'm going out of my mind trying to simply output UTF-8-encoded data to the console. I've managed to accomplish this using String, but now I'd like to do the same with ByteString. Is there a nice and ...