(string-insert! string1 integer string2) -> null
Inserts string2 into string1 at the index point indicated by the integer. See Indexing System.
>> a :: "abgh" >> (string-insert! a 2 "cdef") :: null >> a :: "abcdefgh"