I have a StringBuilder object,
StringBuilder result = new StringBuilder(); result.append(someChar);
Now I want to append a newline characte
For Kotlin,
StringBuilder().appendln("your text");
Though this is a java question, this is also the first google result for kotlin, might come in handy.