Re: Handing over control

2018-09-06 Thread Curt Tilmes
> > >>> >> On 3 Sep 2018, at 18:41, Parrot Raiser <1parr...@gmail.com> wrote: >> >>> >> In Perl 5, a program can hand over control to another with exec: >> >>> >> https://perldoc.perl.org/functions/exec.html >> >>> >> e.g perl -e 'exec vim' opens up vim >> >>> >> >> >>> >> What's the Perl 6

Re: Handing over control

2018-09-03 Thread Brandon Allbery
external to > >> the > >> core. > >> > >> On Mon, Sep 3, 2018 at 12:56 PM Parrot Raiser <1parr...@gmail.com> > wrote: > >> > >>> Thanks for the reply. That didn't show up with any search string I > >>> could contrive. > >

Re: Handing over control

2018-09-03 Thread Parrot Raiser
t;> intent is that system dependent things like that should be external to >> the >> core. >> >> On Mon, Sep 3, 2018 at 12:56 PM Parrot Raiser <1parr...@gmail.com> wrote: >> >>> Thanks for the reply. That didn't show up with any search string I >>> co

Re: Handing over control

2018-09-03 Thread Brandon Allbery
for the reply. That didn't show up with any search string I > >> could contrive. > >> It's disappointing to lose a basic ability like handing over control > >> to another program. > >> > >> On 9/3/18, Elizabeth Mattijsen wrote: > >> > https:

Re: Handing over control

2018-09-03 Thread Parrot Raiser
the reply. That didn't show up with any search string I >> could contrive. >> It's disappointing to lose a basic ability like handing over control >> to another program. >> >> On 9/3/18, Elizabeth Mattijsen wrote: >> > https://docs.perl6.org/language/5to6-perl

Re: Handing over control

2018-09-03 Thread Brandon Allbery
ny search string I > could contrive. > It's disappointing to lose a basic ability like handing over control > to another program. > > On 9/3/18, Elizabeth Mattijsen wrote: > > https://docs.perl6.org/language/5to6-perlfunc#exec > > > >> On 3 Sep 2018, at 18

Re: Handing over control

2018-09-03 Thread Parrot Raiser
Thanks for the reply. That didn't show up with any search string I could contrive. It's disappointing to lose a basic ability like handing over control to another program. On 9/3/18, Elizabeth Mattijsen wrote: > https://docs.perl6.org/language/5to6-perlfunc#exec > >> On 3 Sep 20

Re: Handing over control

2018-09-03 Thread Elizabeth Mattijsen
https://docs.perl6.org/language/5to6-perlfunc#exec > On 3 Sep 2018, at 18:41, Parrot Raiser <1parr...@gmail.com> wrote: > > In Perl 5, a program can hand over control to another with exec: > https://perldoc.perl.org/functions/exec.html > e.g perl -e 'exec vim' opens up vim > > What's the Perl

Handing over control

2018-09-03 Thread Parrot Raiser
In Perl 5, a program can hand over control to another with exec: https://perldoc.perl.org/functions/exec.html e.g perl -e 'exec vim' opens up vim What's the Perl 6 equivalent?