Learn You a Haskell has a code example like this:
ghci> B.pack [99,97,110]
Chunk "can" Empty
(B
stands for Data.ByteString.Lazy
)
But my ghci
does not show Chunk
and Empty
data constructors.
> B.pack [99,97,110]
"can"
Did Haskell developers change the way the values of ByteString
are printed?