klyn.StringBuilderSync.remove
method
public remove(position as UInt, length as UInt) as StringBuilderSync throws IndexException:
DescriptionRemoves a range of characters.
builder = StringBuilderSync()
builder.append("Kxlyn")
builder.remove(1u, 1u)
print(builder.toString())