view Prepaper/code/client.p6 @ 22:b96b3244307b

update paper & slide
author e165727 <e165727@ie.u-ryukyu.ac.jp>
date Sun, 16 Feb 2020 18:20:36 +0900
parents e234acddcfab
children 27f7561b1135
line wrap: on
line source

use IO::Socket::Unix;

my $conn = IO::Socket::INET.new( :host<localhost>,
                                 :port(3333) );

$conn.print: 'Absolute file path';

say $conn.lines;

$conn.close;