klyn.StringBuilderSync.append
method
public append(value as String) as StringBuilderSync:
Description

Appends a string.

Parameters
  • value String to append.
Returns

This builder.

Example
builder = StringBuilderSync()
builder.append("Hello")
builder.append(" Klyn")
print(builder.toString())