[project @ 1998-12-02 13:17:09 by simonm]
[ghc-hetmet.git] / ghc / lib / std / Ratio.lhs
1 %
2 % (c) The AQUA Project, Glasgow University, 1994-1996
3 %
4
5 \section[Ratio]{Module @Ratio@}
6
7 Standard functions on rational numbers
8
9 \begin{code}
10 {-# OPTIONS -fno-implicit-prelude #-}
11
12 module  Ratio (
13     Ratio, Rational, (%), numerator, denominator, approxRational
14   ) where
15
16 import PrelNum
17 import PrelNumExtra
18 \end{code}
19
20