Skip to content

Instantly share code, notes, and snippets.

@amriunix
Created January 28, 2016 08:59
Show Gist options
  • Save amriunix/311f0cf7a50220bc4fb5 to your computer and use it in GitHub Desktop.
Save amriunix/311f0cf7a50220bc4fb5 to your computer and use it in GitHub Desktop.
node js
console.log("1");
process.stdin.on('data', function(data) {
console.log("2");
process.stdout.write(data.toString().trim());
});
console.log("3");
console.log("4");
/*
output :
1
3
4
hi
2
hi
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment