String formatting
String interpolation
Log(s"My name is \(name) and I am \(year - birthYear) years old");Log("My name is " + name + " and I am " + ToString(year - birthYear) + " years old");String addition overloads
// string addition is defined Int32, Float and several other typesLog("My name is " + name + " and I am " + (year - birthYear) + " years old");Last updated