[project @ 1997-03-14 05:31:07 by sof]
[ghc-hetmet.git] / ghc / CONTRIB / pphs / docs / math.hs
1 -- list concatenation (right-associative)
2 (++)                    :: [a] -> [a] -> [a]
3 xs ++ ys                =  foldr (:) ys xs