Skip to content

Instantly share code, notes, and snippets.

@kflu
Created September 5, 2014 19:03
Show Gist options
  • Save kflu/494db8c4b4caf05faad3 to your computer and use it in GitHub Desktop.
Save kflu/494db8c4b4caf05faad3 to your computer and use it in GitHub Desktop.
var i = 0;
while (true) {
i += 1;
process.stdout.write("" + i + " ");
}
process.stdin.on('end', function () { console.log("EOF"); });
process.stdin.pipe(process.stdout);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment