concat(a: utf8, b: utf8) → utf8

Category: [strings](builtinsstrings)_

Concatenate two strings into one.

ParameterTypeDescriptionRemarks
autf8The left-hand string.
butf8The string appended after a.
returnsutf8The two strings joined together.
wcl
concat("foo", "bar")   // join the two strings → "foobar"