Skip to content

Instantly share code, notes, and snippets.

@zlx
Created July 2, 2014 14:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zlx/993621943f2d25fc78d5 to your computer and use it in GitHub Desktop.
Save zlx/993621943f2d25fc78d5 to your computer and use it in GitHub Desktop.
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
@zlx
Copy link
Author

zlx commented Jul 2, 2014

输出结果:
打印出 Another one bites the dust 10次

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment