49065277976c1fa47c823e15493979e8198fd3aa
[ghc-hetmet.git] / ghc / CONTRIB / pphs / docs / math.hs
1 -- list concatenation (right-associative)
2 (++)                    :: [a] -> [a] -> [a]
3 xs ++ ys                =  foldr (:) ys xs