Hi all. I want to overload the operator "^" for working instead of the following "+++" operator: (+++) :: String -> [[String]] -> [[String]] x +++ y = [ x:e | e<-y ] How can I overload the "^" operator? Thanks a lot. Rodrigo.