String append

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

Output:

Foobar