5 ms·
Don't want to come off overly bitter, it's certainly interesting, but I'd like to see some practical uses of this, besides reimplementation of map() and other "
by drapper 12y ago
Don't want to come off overly bitter, it's certainly interesting, but I'd like to see some practical uses of this, besides reimplementation of map() and other "low-level" functions...
- dukerutledge 12y agoHow about multi value return from functions. ``` x = foo(); oh = x[0]; no = x[1]; ``` vs ``` [oh, yeah] = foo() ```