Add even more #! syntax

This commit is contained in:
Lassi Kortela 2020-08-17 10:32:36 +03:00
parent c42f6c5ca7
commit 94eaf509fc
1 changed files with 14 additions and 2 deletions

View File

@ -1,5 +1,5 @@
(id "#!") (id "#!")
(description "Identifier follows [R6RS+]; Unix script [SRFI 22]") (description "Identifier follows [R6RS+]; Unix script [SRFI 22]; #! ... !# comment [Guile]")
(id "#\"") (id "#\"")
(description "Interpolated string [Gauche]") (description "Interpolated string [Gauche]")
@ -58,6 +58,9 @@
(id "#d") (id "#d")
(description "Decimal number [R2RS+]") (description "Decimal number [R2RS+]")
(id "#<n>d")
(description "n-dimensional vector [s7]")
(id "#e") (id "#e")
(description "Exact number [R2RS+]") (description "Exact number [R2RS+]")
@ -68,17 +71,26 @@
(description "Boolean false [R7RS]") (description "Boolean false [R7RS]")
(id "#i") (id "#i")
(description "Inexact number [R2RS+]") (description "Inexact number [R2RS+]; n-dimensional integer vector [s7]")
(id "#o") (id "#o")
(description "Octal integer [R2RS+]") (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") (id "#t")
(description "Boolean true [R3RS+]") (description "Boolean true [R3RS+]")
(id "#true") (id "#true")
(description "Boolean true [R7RS]") (description "Boolean true [R7RS]")
(id "u(...)")
(description "n-dimensional bytevector [s7]")
(id "u8(...)") (id "u8(...)")
(description "Bytevector [R7RS]") (description "Bytevector [R7RS]")