Text Operator
- Last UpdatedMar 28, 2023
- 1 minute read
The text operator available is +, used for concatenation.
|
Synopsis |
text1 + text2 -> text |
-> text |
|
Description |
Return the concatenation of two text strings. |
|
|
Side Effects |
None. |
|
|
Example |
'no' + 'space' -> 'nospace' |
|
|
Errors |
Text result too long. |
|