A haskell IRC bot because who doesn't need one
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
212B

  1. module IRC.Connection where
  2. import Data.Word (Word16)
  3. --import qualified Network.Socket as S
  4. -- The host to connect to.
  5. type Host = String
  6. -- The port to connect to.
  7. type Port = Word16
  8. --connect :: S.Socket