summaryrefslogtreecommitdiff
path: root/package.lisp
diff options
context:
space:
mode:
authorJuan Manuel Tomás <jtomas1815@gmail.com>2022-12-26 03:10:17 -0300
committerJuan Manuel Tomás <jtomas1815@gmail.com>2022-12-26 03:10:17 -0300
commit2990f8c72975eb1de8be62ac043375fea47857eb (patch)
treedb7c8045b29bbb18255b7c05077e8f599fe070bd /package.lisp
parentd7d3e70886554cb8350ea444adf384ca078673fb (diff)
downloadjson-2990f8c72975eb1de8be62ac043375fea47857eb.tar.gz
json-2990f8c72975eb1de8be62ac043375fea47857eb.zip
Introduce a way to serialize the parsed json data
Diffstat (limited to 'package.lisp')
-rw-r--r--package.lisp4
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))