RosettaCodeData/Task/Sockets/Perl-6/sockets.pl6
2016-12-05 22:15:40 +01:00

6 lines
146 B
Raku

my $host = '127.0.0.1';
my $port = 256;
my $client = IO::Socket::INET.new(:$host, :$port);
$client.print( 'hello socket world' );
$client.close;