klyn.StringBuilderSync.append
method
public append(value as String) as StringBuilderSync:
Description
Appends a string. builder = StringBuilderSync() builder.append("Hello") builder.append(" Klyn") print(builder.toString())
Parameters
  • value String to append.
Returns
This builder.
Example