The STRING data type as class / STRING data type methods |
Concatenates a string.
This method concatenates a string to the current STRING variable and returns the resulting string.
The original STRING variable is not modified.
Appending a NULL will have no effect: the original string is returned.
MAIN DEFINE s STRING LET s = "Some text" DISPLAY s.append("... more text") END MAIN