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