klyn.StringBuilder.insert
method
public insert(position as UInt, value as UShort) as StringBuilder throws IndexException:
DescriptionInserts an unsigned short.
builder = StringBuilder()
builder.append("[]")
builder.insert(1u, UShort(12))
print(builder.toString())