# New Ticket Created by  Curt Tilmes 
# Please include the string:  [perl #132487]
# in the subject line of all future correspondence about this issue. 
# <URL: https://rt.perl.org/Ticket/Display.html?id=132487 >


% perl6 -e 'my $proc = run "cat", :in, :out; $proc.in.say: "test\n"; say
$proc.out.get; $proc.in.close;'
test

% perl6 -e 'my $proc = run "cat", :in, :out; say
$proc.out.native-descriptor; $proc.in.say: "test\n"; say $proc.out.get;
$proc.in.close;'
28
Nil

Reply via email to