I am writing in Haskell
a function that gets two lists of type Int
and adds the values of one list to that one of the other.
for example: addElements [1,2,3] [4,5,6]
will give the output: [5,7,9]
my function so far:
addElements :: [Int] -> [Int] -> [Int]
addElements [] [] = []
addElements x:xs [] = x:xs
addElements [] y:ys = y:ys
addElements x:xs y:ys = [x+y] ++ addElements xs ys
I keep getting the error:
Parse error in pattern: addElements Failed, modules loaded: none
I do not get any additional information - what have I done wrong?
x:xs
andy:ys
pattern matches. – ryachza