[project @ 1997-03-17 20:34:25 by simonpj]
[ghc-hetmet.git] / ghc / lib / required / 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