Created
August 8, 2017 06:37
-
-
Save tail-call/3b0bf1530744b4469295175c953dd781 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// A hard way to print "boombastic" | |
var cat = child_process.spawn("cat"); | |
cat.stdin.write("boombastic"); | |
console.log(cat.stdout.read().utf8Slice()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment