chibi-scheme/lib/chibi/json.sld
2020-07-26 23:15:53 +09:00

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"))