The +=
operator is a common extension that adds the specified content to the end of the variable, separated by a space.
x = hello
x += world
Variable references in the right-hand side will be expanded if and only if the original variable was defined as a simply-expanded variable.