(string-append-word! string integer) -> null
Accepts a numerical "word" (in bytes), converts it to the appropriate string value, and adds it to the given string.
Example:
>> (define a (make-string)) :: "" >> (string-append-word! a 300) :: null >> a :: ","