Created
July 2, 2014 14:17
-
-
Save zlx/993621943f2d25fc78d5 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
reader, writer = IO.pipe | |
fork do | |
reader.close | |
10.times do | |
# heavy lifting | |
writer.puts "Another one bites the dust" | |
end | |
end | |
writer.close | |
while message = reader.gets | |
$stdout.puts message | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
输出结果:
打印出
Another one bites the dust
10次