# Repeat

Repeats (merges) a string value multiple times

```mathematica
Repeat("text ", 3) → "text text text"
Repeat("Meow ", 2) → "Meow Meow "
```

#### Inputs

`Repeat(string, count)`

* `string` - A text value to repeat
* `count` - Number of times to repeat
