[project @ 1996-01-08 20:28:12 by partain]
[ghc-hetmet.git] / ghc / CONTRIB / pphs / docs / Haskell_leftindent1.tex
1 \begin{verbatim}
2 gcd       :: Int -> Int -> Int
3 gcd x y    = gcd' (abs x) (abs y)
4              where gcd' x 0 = x
5                    gcd' x y = gcd' y (x `rem` y)
6 \end{verbatim}
7