# New Ticket Created by Zoffix Znet # Please include the string: [perl #128674] # in the subject line of all future correspondence about this issue. # <URL: https://rt.perl.org/Ticket/Display.html?id=128674 >
zoffix@VirtualBox:~$ cat ~/bin/streams.p6 #!/usr/bin/env perl6 my $p = Proc::Async.new: 'perl6', '-e', 'exit 255'; try await $p.start; say 'still here'; zoffix@VirtualBox:~$ streams.p6 The spawned process exited unsuccessfully (exit code: 255) in block <unit> at /home/zoffix/bin/streams.p6 line 4 zoffix@VirtualBox:~$ -- Cheers, ZZ | https://twitter.com/zoffix