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
-------------------------------