## combine()


Combine two strings with a separator.


Usage


``` python
combine(
    a,
    b,
)
```


## Parameters


`a: str`  
The first string.

`b: str`  
The second string.


## Returns


`str`  
The combined string.


## Examples

``` python
>>> combine("hello", "world")
```

'hello-world'
