Add reader directives registry

This commit is contained in:
Lassi Kortela 2020-07-31 11:41:44 +03:00
parent 4cc9800800
commit 9362ab2f42
1 changed files with 23 additions and 0 deletions

23
reader-directive.scm Normal file
View File

@ -0,0 +1,23 @@
(directive "#!bwp")
(purpose "broken-weak-pair object")
(implementations chezscheme)
(directive "#!eof")
(purpose "end-of-file object")
(implementations chezscheme chicken gambit)
(directive "#!fold-case")
(purpose "change to case insensitive identifiers")
(rnrs r7rs)
(directive "#!no-fold-case")
(purpose "change to case sensitive identifiers")
(rnrs r7rs)
(directive "#!r6rs")
(purpose "change to R6RS read syntax")
(rnrs r6rs)
(directive "#!r7rs")
(purpose "change to R7RS read syntax")
(implementations gauche)