diff options
author | simonmar <unknown> | 2005-03-14 15:46:12 +0000 |
---|---|---|
committer | simonmar <unknown> | 2005-03-14 15:46:12 +0000 |
commit | e5e2a19380a98da2ee26c39b04e0ba1fb23bfdc0 (patch) | |
tree | 1d47314bbebdda0c4a2c35a48a98f53fe01c051b /libraries/base/Prelude.hs | |
parent | 74348f63e26d5872fbb39a6a5796bbef30fe36e7 (diff) | |
download | haskell-e5e2a19380a98da2ee26c39b04e0ba1fb23bfdc0.tar.gz |
[project @ 2005-03-14 15:46:12 by simonmar]
Add Data.Ord and Data.Eq. Data.Ord also exports the new function
'comparing', as discussed on the libraries list a while back.
Diffstat (limited to 'libraries/base/Prelude.hs')
-rw-r--r-- | libraries/base/Prelude.hs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libraries/base/Prelude.hs b/libraries/base/Prelude.hs index 578ba7b46d..2f0a510bd2 100644 --- a/libraries/base/Prelude.hs +++ b/libraries/base/Prelude.hs @@ -172,10 +172,12 @@ import GHC.Err ( error, undefined ) import Hugs.Prelude #endif +import Data.Eq +import Data.Ord + #ifndef __HUGS__ infixr 0 $! - -- ----------------------------------------------------------------------------- -- Miscellaneous functions |