:= assignment operator

The := assignment operator concatenates a string to a variable and assigns it back to the given variable.

Syntax

var := str.exp

Example(s)

Concatenates y to x. This is equivalent to: x = x : y

x := y