I want to experiment with network programming in Haskell. The problem I have is that the documentation for the network package is pretty scarce, especially the one for Network.Socket which I want to use.
Do you know of some other references or clearly written projects where I can see how to use it? Are there any good alternatives to network?
Network.Socketappears to be little more than a wrapper around the standard Berkeley sockets API, so I imagine the documentation for it is scarce because there's already plenty of material for using the same API out there.