Concat
Concatenates two strings.
Description
Produces a new string that is the result of concatenating the two provided strings.
Example:
s1 = "Hello"
s2 = " World"
Concat s1+s2 = "Hello World"
Inputs
- s1 (String): The first string.
- s2 (String): The second string.
Outputs
- s1 + s2 (String): The result of the concatenation of s1 and s2.