#!/usr/bin/perl # use strict; use warnings; use IO::Socket; my $sock = new IO::Socket::INET ( PeerAddr => 'dan', PeerPort => '7070', Proto => 'tcp', ); die "Could not create socket: $!\n" unless $sock; print "What would you like to say: "; my $msg = ; print $sock "$msg\n"; close $sock;