All Downloads are FREE. Search and download functionalities are using the official Maven repository.

templates.jsIO.java.lang.StringBuilder.vm Maven / Gradle / Ivy

There is a newer version: 3.5.12
Show newest version
package java.lang;

public class StringBuilder() {

    var content = ""

    fun append(sub : String){
        content = content + sub
    }

    fun append(sub : Char){
        content = content + sub
    }

    public fun toString():String{
        return content
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy