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


See the attached script.
use v6;

my $proc = Proc::Async.new('sleep', '5');
my $p = $proc.start;
$proc.kill;
await $p;

Reply via email to