From 8f905f3c2f226353dae87a4fb89ea05e3b49b3c3 Mon Sep 17 00:00:00 2001 From: Lassi Kortela Date: Mon, 17 Aug 2020 11:14:20 +0300 Subject: [PATCH] Add #<...> and #a syntax from SRFI 58, 107, 163 --- hash-syntax.scm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hash-syntax.scm b/hash-syntax.scm index 57c3be6..1ceff07 100644 --- a/hash-syntax.scm +++ b/hash-syntax.scm @@ -29,7 +29,7 @@ (description "S-expression comment [R6RS, R7RS, SRFI 62]") (id "#<...>") -(description "Unreadable object [Gauche]") +(description "XML literal [SRFI 107]; Unreadable object [Gauche]") (id "##") (description "Datum reference [R7RS]") @@ -52,6 +52,9 @@ (id "#|...|#") (description "Block comment [R6RS, R7RS, SRFI 30]") +(id "#a") +(description "Array [SRFI 58, SRFI 163]") + (id "#b") (description "Binary integer [R2RS+]")