PS generates code for expressions like (> x y z) as if the operators worked the same way in JS and Lisp, but they don't. For example,<br><br>(ps (> 3 2 1))<br> => "3 > 2 > 1;"<br><br>... is an expression that is true in Lisp but false in JS.<br>

<br>Daniel<br>