json.sld 354 B

12345678910111213
  1. (define-library (macduffie json)
  2. (import (scheme base)
  3. (scheme char)
  4. (scheme file)
  5. (scheme inexact)
  6. (scheme read)
  7. (scheme write))
  8. (export json-read json-read-string json-read-file
  9. json-write json-write-string json-write-file
  10. json-null json-null?)
  11. (include "json.body.scm"))