edn/edn.scm

17 lines
370 B
Scheme
Raw Normal View History

2020-02-19 00:29:52 +00:00
@(heading "EDN")
@(text "This egg provides a parser and a writer for the [[https://github.com/edn-format/edn|Extensible Data Notation]].")
@(heading "Documentation")
@(noop)
(module edn (parse-entry tag-handlers write-edn read-edn)
2020-02-19 00:40:18 +00:00
(import srfi-1
srfi-69
srfi-88
scheme
(chicken base)
(chicken keyword)
(chicken port))
(include "edn-impl.scm"))