Is there a function to concatenate elements of a list with a separator? For example:
> foobar \" \" [\"is\",\"there\",\"such\",\"a\",\"function\",\"?\"] [
joinBy sep cont = drop (length sep) $ concat $ map (\w -> sep ++ w) cont