- write-edn structprocedure
Converts Chicken data structures to EDN and writes it to the `current-output-port`.
- struct
- A Chicken data structure consisting of atoms, lists, vectors and hashtables.
(define (write-edn struct) (lambda () (display (parse-entry struct) (current-output-port))))