It's JSON lists as s-exps, which means (as I understand it) that the author doesn't need to implement parsing, only traversal and evaluation. (Which can essentially be a big-ass case statement.)<p><pre><code> ["def", "foo", 1]
["fn", "foo", ["a", "b"], […]]
</code></pre>
It's not the most attractive Lisp I've seen…