Previous Up Next

6.1.8  Concatenating sequences

The , operator is an infixed operator which concatenates two sequences. (Note that it does not concatenate lists.)

Example

A:=(1,2,3,4); B:=(5,6,3,4); A,B
     
1,2,3,4,5,6,3,4           

Previous Up Next