JSON Lisp is a Lisp like language that uses JSON arrays to mimic Lisp S-Expressions. This repository is a reference resource to support my article on the topic.
Check out the JSON Lisp article where we implement this language together.
["+", 2, 2]; // 4["if", true, ["+", 1, 1] // 2["cond", [false, 1], [false, 0], [true, 3]]; // 3