Skip to content

Instantly share code, notes, and snippets.

@mmcgrana
Created December 24, 2010 21:58
Show Gist options
  • Save mmcgrana/754526 to your computer and use it in GitHub Desktop.
Save mmcgrana/754526 to your computer and use it in GitHub Desktop.
log: node server.js
function log(i) {
console.log("log " + i);
setTimeout(function() { log(i + 1); }, 1000);
}
console.log("starting logger");
log(0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment