public insert(position as UInt, value as Int) as StringBuilderSync throws IndexException:
Inserts a signed integer.
This builder.
builder = StringBuilderSync() builder.append("[]") builder.insert(1u, 123) print(builder.toString())