view Prepaper/code/client.p6 @ 24:27f7561b1135

スライド仮完成
author e165727 <e165727@ie.u-ryukyu.ac.jp>
date Mon, 17 Feb 2020 03:19:17 +0900
parents b96b3244307b
children
line wrap: on
line source

use IO::Socket::Unix;

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

$conn.print: 'Absolute file path';

say $conn.lines;

$conn.close;