mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-18 21:29:19 +02:00
10 lines
327 B
Scheme
10 lines
327 B
Scheme
|
|
(define-library (chibi json)
|
|
(import (scheme base)
|
|
(except (srfi 99 records) define-record-type)
|
|
(only (chibi ast) type-name)
|
|
(only (chibi) make-constructor))
|
|
(export string->json json->string json-read json-write
|
|
make-json-reader)
|
|
(include-shared "json")
|
|
(include "json.scm"))
|