String

A string is a type that contains a list of characters.

var myString : String = "Hello World!";

You can add up two string to concatenate them into a new one:

var newString : String = myString + otherString

Last updated