Sha256: e1364bd43de59f76379c084428a2aa9f3cb120b6672f425e3a62cec849dd6b99

Contents?: true

Size: 144 Bytes

Versions: 2

Compression:

Stored size: 144 Bytes

Contents

# tcp_client.rb
require 'socket'
client = TCPSocket.new('localhost', 9090)

client.puts("HI")
line = client.gets
puts line

client.close

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ruby-prof-1.4.0-x64-mingw32 test/client.rb
ruby-prof-1.4.0 test/client.rb