Combine two strings with a separator.
Usage
combine( a, b, )
a: str
The first string.
b: str
The second string.
str
The combined string.
>>> combine("hello", "world") 'hello-world'