On Coffeescript.org:
bawbag = (x, y) -> z = (x * y) bawbag(5, 10)
would compile to:
var bawbag; bawbag = function(
You can pass -b option when you compile code via coffee-script under node.js. The compiled code will be the same as on coffeescript.org.