Table of Contents

StrAdd

str StrAdd(str a, str b)

Description

Returns two strings concatenated. Shorthand for StrParam(s:a, s:b).

Examples

str a = "hello, ";
str b = "world!";
StrAdd(a, b) -> "hello, world!"