# String append

```perl
my $str = "foo";
$str ~= "bar";
say $str;
```

#### Output:

```
foobar
```
