public operator[](position as UInt) as Char throws IndexException:
Gets or sets one character by index.
builder = StringBuilderSync() builder.append("Klyn") builder[0u] = 'C' print(builder[0u])