Skip to content

Instantly share code, notes, and snippets.

@develar
Created August 5, 2013 09:36
Show Gist options
  • Save develar/6154648 to your computer and use it in GitHub Desktop.
Save develar/6154648 to your computer and use it in GitHub Desktop.
(function() {
var cnt = 1;
setInterval(function () {
console.log("#" + cnt + " Hello! from " + process.pid);
cnt++;
}, 2000);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment