19. Using 4GL : Expressions : String Expressions
 
Share this page                  
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 + ': ';