diff options
Diffstat (limited to 'json.lisp')
-rw-r--r-- | json.lisp | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -125,3 +125,9 @@ null-symbol)) (_ whitespace)) v)) + +(defun parse-string (str) + (run json-value (input:from-string str))) + +(defun parse-file (file) + (run json-value (input:from-file file))) |