http://rocketnia.kodingen.com/af/try-lava-script/
It shows you the compiled JavaScript for your input expression as well as the evaluated result. For example:
; Defining a function > (= add1 (fn(x) (+ 1 x))) add1=(function(x){return 1+x;}) => function (x){return 1+x;} ; Calling the function > (add1 2) add1(2) => 3
-----