How to write this in coffeescript?
f = (function(){ // something })();
Thanks for any tips :)
it's ridiculous easy in coffee:
do ->
will return
(function() {})();