Skip to content

Instantly share code, notes, and snippets.

@samuelkadolph
Created June 21, 2011 21:45
Show Gist options
  • Save samuelkadolph/1038983 to your computer and use it in GitHub Desktop.
Save samuelkadolph/1038983 to your computer and use it in GitHub Desktop.
2 duplex pipes in ruby
require "socket"
a, b = Socket.pair(:INET, :STREAM)
a << "abc\n"
b.gets # => "abc\n"
b << "abc\n"
a.gets # => "abc\n"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment