Make-Symbol

(make-symbol string1 string2 ...) -> symbol

Takes one or more strings, appends them together, and converts them to a symbol. This could be expressed also as (string->symbol (string-append string1 string2 ...)).

Example: (make-symbol "a" "b" "c") returns abc