home *** CD-ROM | disk | FTP | other *** search
- -----------------------------------------------------------------------------
- -- Dummy module to import all of the standard libraries; programmers should
- -- normally be more selective than this when it comes to specifying the
- -- modules that a particular program depends on.
- --
- -- Suitable for use with Hugs 98
- -----------------------------------------------------------------------------
-
- module StdLibs where
-
- import Array
- import Char
- import Complex
- import IO
- import Ix
- import List
- import Maybe
- import Monad
- import Ratio
- import System
- import Random
-
- -----------------------------------------------------------------------------
-