117 lines
2.5 KiB
Scheme
117 lines
2.5 KiB
Scheme
(id "#!")
|
|
(description "Identifier follows [R6RS+]; Unix script [SRFI 22]; #! ... !# comment [Guile]")
|
|
|
|
(id "#\"...\"")
|
|
(description "Interpolated string [Gauche]")
|
|
|
|
(id "#'")
|
|
(description "Syntax datum [R6RS, syntax-case]")
|
|
|
|
(id "#(...)")
|
|
(description "Vector [R7RS]")
|
|
|
|
(id "#*\"...\"")
|
|
(description "Incomplete string [Gauche]")
|
|
|
|
(id "#,")
|
|
(description "unsyntax [R6RS, syntax-case]; Reader constructor [SRFI 10]")
|
|
|
|
(id "#,@")
|
|
(description "unsyntax-splicing [R6RS, syntax-case]")
|
|
|
|
(id "#/.../")
|
|
(description "Regular expression [Gauche]")
|
|
|
|
(id "#:")
|
|
(description "Keyword object [Chicken, Guile, S7]; Keyword marker [Kawa, Racket]; Uninterned symbol [Gauche]")
|
|
|
|
(id "#;")
|
|
(description "S-expression comment [R6RS, R7RS, SRFI 62]")
|
|
|
|
(id "#<...>")
|
|
(description "XML literal [SRFI 107]; Unreadable object [Gambit, Gauche]; import reader macro from this library [Sagittarius]")
|
|
|
|
(id "#<<")
|
|
(description "Multi-line string literal [Gambit]")
|
|
|
|
(id "#<n>#")
|
|
(description "Datum reference [R7RS]")
|
|
|
|
(id "#<n>=")
|
|
(description "Datum label [R7RS]")
|
|
|
|
(id "#?")
|
|
(description "Debug macro [Gauche]")
|
|
|
|
(id "#[...]")
|
|
(description "Character set [Gauche]")
|
|
|
|
(id "#\\")
|
|
(description "Literal character [R2RS+]")
|
|
|
|
(id "#`")
|
|
(description "quasisyntax [R6RS, syntax-case]; legacy interpolated string [Gauche]")
|
|
|
|
(id "#|...|#")
|
|
(description "Block comment [R6RS, R7RS, SRFI 30]")
|
|
|
|
(id "#a")
|
|
(description "Array [SRFI 58, SRFI 163]")
|
|
|
|
(id "#b")
|
|
(description "Binary integer [R2RS+]")
|
|
|
|
(id "#ci")
|
|
(description "Change to case insensitive identifiers [Chicken]")
|
|
|
|
(id "#cs")
|
|
(description "Change to case sensitive identifiers [Chicken]")
|
|
|
|
(id "#d")
|
|
(description "Decimal number [R2RS+]")
|
|
|
|
(id "#<n>d")
|
|
(description "n-dimensional vector [s7]")
|
|
|
|
(id "#e")
|
|
(description "Exact number [R2RS+]")
|
|
|
|
(id "#f")
|
|
(description "Boolean false [R3RS+]")
|
|
|
|
(id "#false")
|
|
(description "Boolean false [R7RS]")
|
|
|
|
(id "#i")
|
|
(description "Inexact number [R2RS+]; n-dimensional integer vector [s7]")
|
|
|
|
(id "#lang")
|
|
(description "Declare which programming language is used [Racket]")
|
|
|
|
(id "#o")
|
|
(description "Octal integer [R2RS+]")
|
|
|
|
(id "#r")
|
|
(description "n-dimensional real (i.e. float) vector [s7]")
|
|
|
|
(id "#<n>r")
|
|
(description "Number in radix n [Chez Scheme]")
|
|
|
|
(id "#t")
|
|
(description "Boolean true [R3RS+]")
|
|
|
|
(id "#true")
|
|
(description "Boolean true [R7RS]")
|
|
|
|
(id "#u(...)")
|
|
(description "n-dimensional bytevector [s7]")
|
|
|
|
(id "#u8(...)")
|
|
(description "Bytevector [R7RS]")
|
|
|
|
(id "#vu8(...)")
|
|
(description "Bytevector [R6RS]")
|
|
|
|
(id "#x")
|
|
(description "Hexadecimal integer [R2RS+]")
|