Advertisement
lisp123456

Untitled

Aug 8th, 2021
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. CS325-USER> (let ((yason:*parse-object-as* :alist))
  2. (yason:parse "{\"activeFramePerNote\":{\"60\":[181],\"62\":[601],\"64\":[1085]},\"duration\":21.68}"))
  3. (("duration" . 21.68) ("activeFramePerNote" ("64" 1085) ("62" 601) ("60" 181)))
  4. CS325-USER> (yason:encode-alist *)
  5. {"duration":21.68000030517578,"activeFramePerNote":[["64",1085],["62",601],["60",181]]}
  6. (("duration" . 21.68) ("activeFramePerNote" ("64" 1085) ("62" 601) ("60" 181)))
  7. CS325-USER>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement