Was this helpful?
String Expressions
The concatenation operator (+) joins string expressions together into new expressions. For example, the following statement builds a prompt using literals and a variable:
answer := prompt 
    'Please enter department for ' + 
        :name + ': ';
Last modified date: 04/03/2024