/usr/lib/s9fes/help/symbol-to-string is in scheme9 2010.11.13-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | R4RS 6.4 (symbol->string symbol) ==> string
Returns the name of SYMBOL as a string. If the symbol was part of
an object returned as the value of a literal expression (section
see section 4.1.2 Literal expressions) or by a call to the READ
procedure, and its name contains alphabetic characters, then the
string returned will contain characters in the implementation's
preferred standard case--some implementations will prefer upper
case, others lower case. If the symbol was returned by STRING->SYMBOL,
the case of characters in the string returned will be the same as
the case in the string that was passed to STRING->SYMBOL. It is an
error to apply mutation procedures like STRING-SET! to strings
returned by this procedure.
The following examples assume that the implementation's standard
case is lower case:
(symbol->string 'flying-fish) ==> "flying-fish"
(symbol->string 'Martin) ==> "martin"
(symbol->string (string->symbol "Malvina")) ==> "Malvina"
|