[project @ 1999-03-09 14:51:03 by sewardj]
[ghc-hetmet.git] / ghc / interpreter / lib / Ratio.hs
1 -----------------------------------------------------------------------------
2 -- Standard Library: Ratio and Rational types and operations
3 --
4 -- Suitable for use with Hugs 98
5 -----------------------------------------------------------------------------
6
7 module  Ratio (
8     Ratio, Rational, (%), numerator, denominator, approxRational ) where
9
10 -- This module is empty; Rational is currently defined in the prelude,
11 -- but should eventually be moved to this library file instead.
12
13 -----------------------------------------------------------------------------