Go to the previous, next section.
The following list describes additional notations used in Scheme.
See section Numbers, for a description of the notations used for numbers.
+ - .
- The plus sign, minus sign, and period are used in numbers, and may also
occur in an identifier. A delimited period (not occurring within a
number or identifier) is used in the notation for pairs and to indicate
a "rest" parameter in a formal parameter list
(see section Lambda Expressions).
( )
- Parentheses are used for grouping and to notate lists (see section Lists).
"
- The double quote delimits strings (see section Strings).
\
- The backslash is used in the syntax for character constants
(see section Characters) and as an escape character within string constants
(see section Strings).
;
- The semicolon starts a comment.
'
- The single quote indicates literal data; it suppresses evaluation
(see section Quoting).
`
- The backquote indicates almost-constant data (see section Quoting).
,
- The comma is used in conjunction with the backquote (see section Quoting).
,@
- A comma followed by an at-sign is used in conjunction with the backquote
(see section Quoting).
#
- The sharp (or pound) sign has different uses, depending on the character
that immediately follows it:
#t #f
- These character sequences denote the boolean constants
(see section Booleans).
#\
- This character sequence introduces a character constant
(see section Characters).
#(
- This character sequence introduces a vector constant (see section Vectors).
A close parenthesis, `)', terminates a vector constant.
#e #i #b #o #d #l #s #x
- These character sequences are used in the notation for numbers
(see section Numbers).
#|
- This character sequence introduces an extended comment. The comment is
terminated by the sequence `|#'. This notation is an MIT Scheme
extension.
#!
- This character sequence is used to denote a small set of named
constants. Currently there are only two of these,
#!optional
and
#!rest
, both of which are used in the lambda
special form
to mark certain parameters as being "optional" or "rest" parameters.
This notation is an MIT Scheme extension.
#*
- This character sequence introduces a bit string (see section Bit Strings).
This notation is an MIT Scheme extension.
#[
- This character sequence is used to denote objects that do not have a
readable external representation (see section Custom Output). A close
bracket, `]', terminates the object's notation. This notation is
an MIT Scheme extension.
#@
- This character sequence is a convenient shorthand used to refer to
objects by their hash number (see section Custom Output). This notation is
an MIT Scheme extension.
#=
##
- These character sequences introduce a notation used to show circular
structures in printed output, or to denote them in input. The notation
works much like that in Common Lisp, and is an MIT Scheme extension.
Go to the previous, next section.