Übungen: append

implementiere

append :: [a] -> [a] -> [a]
-- append "foo" "bar" = "foobar"
benutze Fallunterscheidung nach dem ersten Argument:
append []       ys = ???
append (x : xs) ys = ???



Johannes Waldmann 2004-11-30