symbol
-- r7rs
Type symbol?
Symbols are objects whose usefulness rests on the fact that two symbols are identical (in the sense of
eqv?
) if and only if their names are spelled the same way. For instance, they can be used the way enumerated values are used in other languages.The rules for writing a symbol are exactly the same as the rules for writing an identifier; see sections on identifiers and symbols.
It is guaranteed that any symbol that has been returned as part of a literal expression, or read using the
read
procedure, and subsequently written out using thewrite
procedure, will read back in as the identical symbol (in the sense ofeqv?
).Note: Some implementations have values known as uninterned symbols, which defeat write/read invariance, and also violate the rule that two symbols are the same if and only if their names are spelled the same. This report does not specify the behavior of implementation-dependent extensions.
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.