A very basic question, what is the right way to concatenate a String in Kotlin?
In Java you would use the concat() method, e.g.
String a = "Hello ";
String b = a.concat("World"); // b = Hello World
The concat() function isn't available for Kotlin though. Should I use the + sign?