[project @ 1996-01-08 20:28:12 by partain]
[ghc-hetmet.git] / ghc / CONTRIB / pphs / docs / Haskell_math.tex
1 \begin{verbatim}
2 -- list concatenation (right-associative)
3 (++)                    :: [a] -> [a] -> [a]
4 xs ++ ys                =  foldr (:) ys xs
5 \end{verbatim}