I'm brand new to Haskell and have very little idea what I'm doing. I've been reading a few tutorials and am now attempting to step through a Roll your own IRC bot example.
I get a compilation error from ghc on:
clean = drop 1 . dropWhile (/= ':') . drop 1
The error is:
irc.hs:34:11: parse error on input '='
What have I done wrong?