String-Append-Byte!

(string-append-byte! string integer) -> null

Accepts a numerical byte, converts it to the appropriate string value, and adds it to the given string.

Example:

>> (define a (make-string))
:: ""
>> (string-append-byte! a 40)
:: null
>> a
:: "("