![]() |
| ||||||
Navigation |
Synopsis Concatenate two strings.
Syntax
Exp1 + Exp2
Types
Description Concatenates the string values of
Exp1 and Exp2 .
Note that to concatenate other types of values into a string, you can use String interpolation.
Examples
rascal>"abc" + "def";
str: "abcdef"
![]() |