String class - concatenation methods


f = "abc"
f"def"      ->   "abcdef"
f || "def"  ->   "abcdef"
f "def"     ->   "abc def"

Read Me - Common Public License V1.0 - Copyright Notice(©)

Concatenation Methods


>>-concatenation_operator(argument)----------------------------><

Concatenates the receiver object with [argument] . (See .) The [concatenation_operator] can be:

"" concatenates without an intervening blank. The abuttal operator "" is the null string. The language processor uses the abuttal to concatenate two terms that another operator does not separate.
|| || method method|| concatenates without an intervening blank.
" " concatenates with one blank between the receiver object and the argument. (The operator " " is a blank.)

Read Me - Common Public License V1.0 - Copyright Notice(©)