Created
March 4, 2014 14:44
-
-
Save KATT/9347712 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fn = () -> | |
for i in [0...10] | |
callMethod i | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var fn; | |
fn = function() { | |
var i, _i, _results; | |
_results = []; | |
for (i = _i = 0; _i < 10; i = ++_i) { | |
_results.push(callMethod(i)); | |
} | |
return _results; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment