require 'socket'host = "localhost"port = 12345TCPSocket.open(host, port) do |s| # Use block form of open while line = s.gets puts line.chop endend # Socket automatically closed