public append(value as Object) as StringBuilderSync:
Appends the string representation of an object.
This builder.
builder = StringBuilderSync() builder.append(42 as Object) print(builder.toString())