Re: creating threas in BEGIN

2005-07-15 Thread Elizabeth Mattijsen
At 4:32 PM +0100 7/14/05, Nicholas Clark wrote: This is more a "note to collective 'self'" question than one I expect the answer to right now. (The answer I expect right now is a glib "it will") How will the perl6 compiler cope with people creating threads inside BEGIN blocks? Whatever the docs

Re: creating threas in BEGIN

2005-07-14 Thread Larry Wall
On Thu, Jul 14, 2005 at 04:32:13PM +0100, Nicholas Clark wrote: : How will the perl6 compiler cope with people creating threads inside : BEGIN blocks? Probably break, if they meant INIT. I can't think of a static way to detect that offhand, so I'm okay if we just call it erroneous. Or maybe there

Re: creating threas in BEGIN

2005-07-14 Thread Ingo Blechschmidt
Hi, Luke Palmer wrote: > On 7/14/05, Nicholas Clark <[EMAIL PROTECTED]> wrote: >> This is more a "note to collective 'self'" question than one I expect >> the answer to right now. (The answer I expect right now is a glib "it >> will") >> >> How will the perl6 compiler cope with people creating th

Re: creating threas in BEGIN

2005-07-14 Thread Luke Palmer
On 7/14/05, Nicholas Clark <[EMAIL PROTECTED]> wrote: > This is more a "note to collective 'self'" question than one I expect the > answer to right now. (The answer I expect right now is a glib "it will") > > How will the perl6 compiler cope with people creating threads inside > BEGIN blocks? A g

creating threas in BEGIN

2005-07-14 Thread Nicholas Clark
This is more a "note to collective 'self'" question than one I expect the answer to right now. (The answer I expect right now is a glib "it will") How will the perl6 compiler cope with people creating threads inside BEGIN blocks? Whatever the docs say, people do it in Perl 5 as soon as someone Cs