# String append

```ruby
var str = 'Foo'
str += 'bar'
say str
```

#### Output:

```
Foobar
```
