# String concatenation

To concatenate strings, simply use the `+` operator.

To concatenate non-string values into string values, use the [toString](https://daseldocs.tomwright.me/functions/tostring) function.

## Examples

```
"hello" + " " + "world" // "hello world"
"i am " + toString(100) + " years old" // "i am 100 years old"
```
