registry.scheme.org/hash-syntax.scm

150 lines
3.3 KiB
Scheme
Raw Normal View History

2020-08-06 16:46:55 -04:00
(id "#!")
2020-08-17 03:32:36 -04:00
(description "Identifier follows [R6RS+]; Unix script [SRFI 22]; #! ... !# comment [Guile]")
2020-08-06 16:46:55 -04:00
2020-08-17 03:38:15 -04:00
(id "#\"...\"")
2020-08-06 16:46:55 -04:00
(description "Interpolated string [Gauche]")
2021-08-21 07:25:13 -04:00
(id "#${...}")
(description "Binary blob [Chicken]")
2020-08-17 02:28:44 -04:00
(id "#'")
(description "Syntax datum [R6RS, syntax-case]")
2020-08-17 03:38:15 -04:00
(id "#(...)")
2020-08-06 16:46:55 -04:00
(description "Vector [R7RS]")
2020-08-17 03:38:15 -04:00
(id "#*\"...\"")
2020-08-06 16:46:55 -04:00
(description "Incomplete string [Gauche]")
2021-09-10 09:10:04 -04:00
(id "#+")
(description "Read-time conditional [Chicken]")
2020-08-06 16:46:55 -04:00
(id "#,")
2020-08-17 02:27:56 -04:00
(description "unsyntax [R6RS, syntax-case]; Reader constructor [SRFI 10]")
2020-08-16 12:50:01 -04:00
(id "#,@")
(description "unsyntax-splicing [R6RS, syntax-case]")
2020-08-17 03:38:15 -04:00
(id "#/.../")
2020-08-06 16:46:55 -04:00
(description "Regular expression [Gauche]")
(id "#:")
2022-06-17 15:12:07 -04:00
(description "Keyword object [Chicken, Guile, s7]; Keyword marker [Kawa, Racket]; Uninterned symbol [Gauche]")
2020-08-06 16:46:55 -04:00
(id "#;")
2020-08-16 12:50:01 -04:00
(description "S-expression comment [R6RS, R7RS, SRFI 62]")
2020-08-06 16:46:55 -04:00
2020-08-16 12:50:01 -04:00
(id "#<...>")
2020-10-14 04:28:08 -04:00
(description "XML literal [SRFI 107]; Unreadable object [Gambit, Gauche]; import reader macro from this library [Sagittarius]")
2020-08-06 16:46:55 -04:00
2020-08-20 04:30:36 -04:00
(id "#<<")
(description "Multi-line string literal [Gambit]")
2020-08-16 12:50:01 -04:00
(id "#<n>#")
(description "Datum reference [R7RS]")
(id "#<n>=")
(description "Datum label [R7RS]")
2020-08-06 16:46:55 -04:00
(id "#?")
(description "Debug macro [Gauche]")
2020-08-17 03:38:15 -04:00
(id "#[...]")
2020-08-06 16:46:55 -04:00
(description "Character set [Gauche]")
(id "#\\")
2020-08-17 02:28:14 -04:00
(description "Literal character [R2RS+]")
2020-08-06 16:46:55 -04:00
(id "#`")
2020-08-17 02:14:24 -04:00
(description "quasisyntax [R6RS, syntax-case]; legacy interpolated string [Gauche]")
2020-08-06 16:46:55 -04:00
2020-08-17 02:27:56 -04:00
(id "#|...|#")
(description "Block comment [R6RS, R7RS, SRFI 30]")
2020-08-17 02:03:12 -04:00
(id "#a")
(description "Array [SRFI 58, SRFI 163]")
2020-08-17 02:12:56 -04:00
(id "#b")
(description "Binary integer [R2RS+]")
(id "#c<n>(...)")
(description "n-bit complex vector [SRFI 160: n = 64, 128]")
(id "#ci")
(description "Change to case insensitive identifiers [Chicken]")
(id "#cs")
(description "Change to case sensitive identifiers [Chicken]")
2022-06-17 15:34:31 -04:00
(id "#<n>d(...)")
(description "n-dimensional array [s7]")
2020-08-17 02:12:56 -04:00
(id "#d")
(description "Decimal number [R2RS+]")
(id "#e")
(description "Exact number [R2RS+]")
2020-08-17 02:03:12 -04:00
(id "#f")
2020-08-17 02:12:40 -04:00
(description "Boolean false [R3RS+]")
2020-08-17 02:03:12 -04:00
(id "#f<n>(...)")
(description "n-bit float vector [SRFI 4, 160: n = 32, 64]")
2020-08-17 02:03:12 -04:00
(id "#false")
2020-08-17 02:12:40 -04:00
(description "Boolean false [R7RS]")
2020-08-17 02:03:12 -04:00
2022-06-17 15:34:31 -04:00
(id "#<n>i(...)")
(description "n-dimensional signed integer array [s7]")
2020-08-17 02:12:56 -04:00
(id "#i")
2022-06-17 15:34:31 -04:00
(description "Inexact number [R2RS+]")
2020-08-17 02:12:56 -04:00
2022-06-17 15:38:05 -04:00
(id "#i<n>d(...)")
(description "n-dimensional signed integer array [s7]")
2020-08-25 14:15:02 -04:00
(id "#lang")
(description "Declare which programming language is used [Racket]")
2020-08-17 02:12:56 -04:00
(id "#o")
(description "Octal integer [R2RS+]")
2020-08-17 03:32:36 -04:00
(id "#<n>r")
(description "Number in radix n [Chez Scheme]")
2022-06-17 15:34:31 -04:00
(id "#<n>r(...)")
(description "n-dimensional real (i.e. float) array [s7]")
2022-06-17 15:38:05 -04:00
(id "#r<n>d(...)")
(description "n-dimensional real (i.e. float) array [s7]")
(id "#s<n>(...)")
(description "n-bit signed integer vector [SRFI 4, 160: n = 8, 16, 32, 64]")
2020-08-17 02:03:12 -04:00
(id "#t")
2020-08-17 02:12:40 -04:00
(description "Boolean true [R3RS+]")
2020-08-17 02:03:12 -04:00
(id "#true")
2020-08-17 02:12:40 -04:00
(description "Boolean true [R7RS]")
2020-08-17 02:12:56 -04:00
2022-06-17 15:34:31 -04:00
(id "#<n>u(...)")
(description "n-dimensional byte array [s7]")
2020-08-17 03:32:36 -04:00
(id "#u<n>(...)")
(description "n-bit unsigned integer vector [SRFI 4, 160: n = 8, 16, 32, 64]")
2022-06-17 15:38:05 -04:00
(id "#u<n>d(...)")
(description "n-dimensional byte array [s7]")
2020-08-18 06:18:23 -04:00
(id "#u8(...)")
2020-08-17 02:29:10 -04:00
(description "Bytevector [R7RS]")
2022-06-17 15:11:25 -04:00
(id "#u8\"...\"")
(description "String-notated bytevector [SRFI 207]")
2020-08-18 06:18:23 -04:00
(id "#vu8(...)")
2020-08-17 02:29:10 -04:00
(description "Bytevector [R6RS]")
2020-08-17 02:12:56 -04:00
(id "#x")
(description "Hexadecimal integer [R2RS+]")