Re: Can I call myself

2017-02-06 Thread ToddAndMargo
On 02/06/2017 08:32 AM, Larry Wall wrote: On Sat, Feb 04, 2017 at 08:39:52PM -0800, ToddAndMargo wrote: : Are there any special rules, like in Perl 5? Do I need to : pre-declare the sub? : : sub BummerDude ($); : sub BummerDude ($) { do something; } For normal subs, you never have to

Re: [perl #130723] [BUG] .pick on large ranges gives unexpected results on Windows only

2017-02-06 Thread Brandon Allbery
On Mon, Feb 6, 2017 at 3:31 PM, Nicholas Clark wrote: > OK, this is a bit of guessing, and I would like to think that I've guessed > wrongly because someone else *should* have hit this before... > You'd be surprised. Verifying randomness is fairly tricky... and Perl 3 went

Re: [perl #130723] [BUG] .pick on large ranges gives unexpected results on Windows only

2017-02-06 Thread Nicholas Clark
OK, this is a bit of guessing, and I would like to think that I've guessed wrongly because someone else *should* have hit this before... On Sun, Feb 05, 2017 at 03:21:12PM -0800, Michael Schaap wrote: > # New Ticket Created by Michael Schaap > # Please include the string: [perl #130723] > #

Re: List

2017-02-06 Thread Brent Laabs
Here are the docs on the List type: https://docs.perl6.org/type/List On Mon, Feb 6, 2017 at 12:40 PM, Bob Goolsby wrote: > Help > > -- > > Bob Goolsby > bob.gool...@gmail.com >

List

2017-02-06 Thread Bob Goolsby
Help -- Bob Goolsby bob.gool...@gmail.com

Re: Can I call myself

2017-02-06 Thread Larry Wall
On Sat, Feb 04, 2017 at 08:39:52PM -0800, ToddAndMargo wrote: : Are there any special rules, like in Perl 5? Do I need to : pre-declare the sub? : : sub BummerDude ($); : sub BummerDude ($) { do something; } For normal subs, you never have to predeclare, because the calling syntax can assume an