46e3d0b38f70129ccd85f321fbad6d77820dea70
[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 \end{code}
18
19