up previous next

4.3.2 Concatenation

Strings may be concatenated using + or using the list function Concat.

example

    
L := "hello ";
M := "world";
L + M;
hello world
-------------------------------
Concat(L,M);
hello world
-------------------------------