up previous next
4.3.2 Concatenation
***** NOT YET UPDATED TO CoCoA-5: follow with care *****

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