str StrAdd(str a, str b)
Returns two strings concatenated. Shorthand for StrParam(s:a, s:b).
StrParam(s:a, s:b)
str a = "hello, "; str b = "world!"; StrAdd(a, b) -> "hello, world!"