Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 273 Bytes

README.md

File metadata and controls

20 lines (16 loc) · 273 Bytes

jdn

Janet data notation. A set of convenience wrappers around the Janet parser api.

Quick Examples

(import jdn)

(jdn/encode @[1 nil 2])
"@[1 nil 2]"
(jdn/decode-values "")
@[]
(jdn/decode-values "a b c")
@[a b c]
(jdn/decode "a b")
a
(jdn/decode "nil")
nil