registry.scheme.org/hash-syntax.scm

54 lines
1.1 KiB
Scheme
Raw Normal View History

2020-08-06 16:46:55 -04:00
(id "#!")
(description "Identifier follows [R6RS+]; Unix script [SRFI 22]")
(id "#\"")
(description "Interpolated string [Gauche]")
(id "#(")
(description "Vector [R7RS]")
(id "#*")
(description "Incomplete string [Gauche]")
(id "#,")
(description "Reader constructor [SRFI 10]")
2020-08-16 12:50:01 -04:00
(id "#,")
(description "unsyntax [R6RS, syntax-case]")
(id "#,@")
(description "unsyntax-splicing [R6RS, syntax-case]")
2020-08-06 16:46:55 -04:00
(id "#/")
(description "Regular expression [Gauche]")
(id "#:")
2020-08-16 12:50:01 -04:00
(description "Keyword [Guile, 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-08-06 16:46:55 -04:00
(description "Unreadable object [Gauche]")
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]")
(id "#[")
(description "Character set [Gauche]")
(id "#\\")
(description "Literal character [R7RS]")
(id "#`")
2020-08-16 12:50:01 -04:00
(description "quasisyntax [R6RS, syntax-case]; legacy string interpolation [Gauche]")
2020-08-06 16:46:55 -04:00
(id "#|")
2020-08-16 12:50:01 -04:00
(description "Block comment until |# [R6RS, R7RS, SRFI 30]")