I was just playing with your [demo page](http://www.lisptojavascript.com/): ```lisp (defun bar (x) (* x x)) ``` this map to: ``` function bar(x) { x * x; }; ``` the function don't return anything, in lisp function always return last expression like in Ruby, so it have implicit return.