Add number prefixes to hash-syntax
This commit is contained in:
parent
9d27e3bb1d
commit
7002737e10
|
@ -52,14 +52,32 @@
|
||||||
(id "#|")
|
(id "#|")
|
||||||
(description "Block comment until |# [R6RS, R7RS, SRFI 30]")
|
(description "Block comment until |# [R6RS, R7RS, SRFI 30]")
|
||||||
|
|
||||||
|
(id "#b")
|
||||||
|
(description "Binary integer [R2RS+]")
|
||||||
|
|
||||||
|
(id "#d")
|
||||||
|
(description "Decimal number [R2RS+]")
|
||||||
|
|
||||||
|
(id "#e")
|
||||||
|
(description "Exact number [R2RS+]")
|
||||||
|
|
||||||
(id "#f")
|
(id "#f")
|
||||||
(description "Boolean false [R3RS+]")
|
(description "Boolean false [R3RS+]")
|
||||||
|
|
||||||
(id "#false")
|
(id "#false")
|
||||||
(description "Boolean false [R7RS]")
|
(description "Boolean false [R7RS]")
|
||||||
|
|
||||||
|
(id "#i")
|
||||||
|
(description "Inexact number [R2RS+]")
|
||||||
|
|
||||||
|
(id "#o")
|
||||||
|
(description "Octal integer [R2RS+]")
|
||||||
|
|
||||||
(id "#t")
|
(id "#t")
|
||||||
(description "Boolean true [R3RS+]")
|
(description "Boolean true [R3RS+]")
|
||||||
|
|
||||||
(id "#true")
|
(id "#true")
|
||||||
(description "Boolean true [R7RS]")
|
(description "Boolean true [R7RS]")
|
||||||
|
|
||||||
|
(id "#x")
|
||||||
|
(description "Hexadecimal integer [R2RS+]")
|
||||||
|
|
Loading…
Reference in New Issue