diff options
author | Juan Manuel Tomás <jtomas1815@gmail.com> | 2022-12-26 03:10:17 -0300 |
---|---|---|
committer | Juan Manuel Tomás <jtomas1815@gmail.com> | 2022-12-26 03:10:17 -0300 |
commit | 2990f8c72975eb1de8be62ac043375fea47857eb (patch) | |
tree | db7c8045b29bbb18255b7c05077e8f599fe070bd /package.lisp | |
parent | d7d3e70886554cb8350ea444adf384ca078673fb (diff) | |
download | json-2990f8c72975eb1de8be62ac043375fea47857eb.tar.gz json-2990f8c72975eb1de8be62ac043375fea47857eb.zip |
Introduce a way to serialize the parsed json data
Diffstat (limited to 'package.lisp')
-rw-r--r-- | package.lisp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/package.lisp b/package.lisp index d2b1e6f..2c7c3a7 100644 --- a/package.lisp +++ b/package.lisp @@ -1,4 +1,6 @@ (defpackage #:json (:use #:cl #:parser) (:export #:parse-string - #:parse-file)) + #:parse-file + #:to-string + #:to-file)) |