home *** CD-ROM | disk | FTP | other *** search
/ PSION CD 2 / PsionCDVol2.iso / Programs / 876 / hugs.sis / StdLibs.hs < prev    next >
Encoding:
Text File  |  2000-09-21  |  630 b   |  24 lines

  1. -----------------------------------------------------------------------------
  2. -- Dummy module to import all of the standard libraries; programmers should
  3. -- normally be more selective than this when it comes to specifying the
  4. -- modules that a particular program depends on.
  5. --
  6. -- Suitable for use with Hugs 98
  7. -----------------------------------------------------------------------------
  8.  
  9. module StdLibs where
  10.  
  11. import Array
  12. import Char
  13. import Complex
  14. import IO
  15. import Ix
  16. import List
  17. import Maybe
  18. import Monad
  19. import Ratio
  20. import System
  21. import Random
  22.  
  23. -----------------------------------------------------------------------------
  24.