Fixing dependency mess
This commit is contained in:
parent
d325e39e52
commit
e58042dc29
3 changed files with 9 additions and 8 deletions
|
@ -1,9 +1,3 @@
|
|||
(import scheme
|
||||
srfi-69
|
||||
srfi-1
|
||||
(chicken base)
|
||||
(chicken keyword)
|
||||
(chicken port))
|
||||
;; EDN Reading
|
||||
;; ===========
|
||||
|
||||
|
|
10
edn.scm
10
edn.scm
|
@ -5,6 +5,12 @@
|
|||
@(heading "Documentation")
|
||||
@(noop)
|
||||
|
||||
(use srfi-1 srfi-69 srfi-88)
|
||||
(module edn (parse-entry tag-handlers write-edn read-edn)
|
||||
"edn-impl.scm")
|
||||
(import srfi-1
|
||||
srfi-69
|
||||
srfi-88
|
||||
scheme
|
||||
(chicken base)
|
||||
(chicken keyword)
|
||||
(chicken port))
|
||||
(include "edn-impl.scm"))
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
(require-extension r7rs srfi-69 srfi-64 srfi-88 srfi-1 hahn)
|
||||
(import (chicken port))
|
||||
(include "../edn-impl.scm")
|
||||
;; (run-hahn -o edn.wiki edn.scm edn-impl.scm)
|
||||
|
||||
|
|
Loading…
Reference in a new issue