I have a question on pattern matching:
Is it possible to somehow match a (string ++ [char] ++ anotherstring)?
I have tried something like:
f (s++";"++r) = s++r (the rhs is trivial, but its just for testing ;))
But this results in a parse error.