Skip to content

Instantly share code, notes, and snippets.

@k1LoW
Created July 31, 2009 00:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save k1LoW/159004 to your computer and use it in GitHub Desktop.
Save k1LoW/159004 to your computer and use it in GitHub Desktop.
/**
* TexhTouch #0b101
*
*/
Deferred.define();
function log(i) {
console.log(i);
}
var list = [1,2,3].map(function(i){
return call(log, i);
});
parallel(list)
.next(function () {
console.log("Completed.");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment