Hi there,
It seems like every Haskell program I write imports the following modules:

Control.Monad
Control.Applicative
Data.Maybe
Data.List

Is there a good reason why these modules aren't imported by default? When I write a simple script usually a 1/4th of the script is just imports, and my code just looks uglier.

Adit