[project @ 1998-02-02 17:27:26 by simonm]
[ghc-hetmet.git] / ghc / lib / std / Ratio.lhs
diff --git a/ghc/lib/std/Ratio.lhs b/ghc/lib/std/Ratio.lhs
new file mode 100644 (file)
index 0000000..46e3d0b
--- /dev/null
@@ -0,0 +1,19 @@
+%
+% (c) The AQUA Project, Glasgow University, 1994-1996
+%
+
+\section[Ratio]{Module @Ratio@}
+
+Standard functions on rational numbers
+
+\begin{code}
+{-# OPTIONS -fno-implicit-prelude #-}
+
+module Ratio (
+    Ratio, Rational, (%), numerator, denominator, approxRational
+  ) where
+
+import PrelNum
+\end{code}
+
+