Strings

    Anything between quotes is an object of class String which supports several methods and the operator + of concatenation:

     s = "th" + "is a " + " string";
 
 

What is new ?

    Nothing.

Return