String concatenation

var s = 'hello'
say s+' literal'
var s1 = s+' literal'
say s1

An example of destructive concatenation:

s += ' literal'
say s