How to write this in coffeescript?
f = (function(){ // something })();
Thanks for any tips :)
It should be
f = () -> # do something