public insert(position as UInt, value as Byte) as StringBuilderSync throws IndexException:
Inserts an unsigned byte.
This builder.
builder = StringBuilderSync() builder.append("[]") builder.insert(1u, Byte(7)) print(builder.toString())