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

  1. -----------------------------------------------------------------------------
  2. -- Dummy module to import all of the Hugs 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 HugsLibs where
  10.  
  11. import StdLibs
  12. import Trace
  13. import Number
  14. import ParseLib
  15. import Interact
  16. import AnsiScreen
  17. import AnsiInteract
  18. import IOExtensions
  19. import Sequence
  20. import ListUtils
  21. import Dynamic
  22.  
  23. -----------------------------------------------------------------------------
  24.