- string-concatenate string-listprocedure
Concatenates the elements of string-list together into a single string.
Rationale: Some implementations of Scheme limit the number of arguments that may be passed to an n-ary procedure, so the
(apply string-append string-list)
idiom, which is otherwise equivalent to using this procedure, is not as portable.