String append

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

Output:

foobar