symbol->string
-- r7rs
Definition converter
;
symbol->string
(from vonuvoli
);Procedure variants:
scheme:base
-- (scheme base)
;scheme
-- (scheme)
;(symbol->string symbol)
Returns the name of
symbol
as a string, but without adding escapes. It is an error to apply mutation procedures likestring-set!
to strings returned by this procedure.(symbol->string 'flying-fish) ===> "flying-fish" (symbol->string 'Martin) ===> "Martin" (symbol->string (string->symbol "Malvina")) ===> "Malvina"
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.