How to write this in coffeescript?
f = (function(){ // something })();
Thanks for any tips :)
Apologies, I solved it:
f = ( () -> "something" )()