Manual

concat
66
concat
Description
Appends one string to the end of another string.
Usage
LeadStr TrailStr concat ConcatStr
LeadStr String. The string containing the characters which PAL will place at the start of
the new ConcatStr string.
TrailStr String. The string containing the characters which PAL will place at the end of
the new ConcatStr string.
ConcatStr String. The new string created by the interpreter which begins with the characters
from LeadStr and ends with the characters from TrailStr.
Comments
The interpreter creates a the new string ConcatStr. ConcatStr will consist of the characters from
LeadStr followed by the characters from TrailStr.










