I need to define a function \'Compose\' which takes a list \'L\' which is a list of functions. When I specify a parameter that will suit all the functions in the list, the l
in haskell:
compose :: a -> [a -> a] -> a compose a (x:xs) = x (compose a xs) compose a [] = a