class StringBuilder { private #data = ''; add(str) { this.#data += str; } toString() { return this.#data; } }