Re: Range of Dates

2018-05-05 Thread Sean McAfee
On Wed, May 2, 2018 at 3:44 AM, Elizabeth Mattijsen wrote: > Getting back to maybe your original question: if you want the date 7 days > from now, you can just use integer arithmetic: > > $ 6 'say Date.today + 7' > 2018-05-09 > Oh, I knew that; that was just an example. My actual code involved

Re: tight?

2018-05-05 Thread ToddAndMargo
On 05/05/2018 02:59 AM, Elizabeth Mattijsen wrote: On 5 May 2018, at 10:59, ToddAndMargo wrote: I am looking at: https://docs.perl6.org/language/operators#infix_&&; I understand what a Boolean AND is, but why are they using the term "Tight"?What am I missing? Precedence is what you’re m

Re: OT: creating an icon on the task bar

2018-05-05 Thread ToddAndMargo
On 05/03/2018 08:55 PM, Todd Chester wrote: Hi All, But only a little bit off topic. Windows 7 Pro, SP1, 32 bit I created a Perl6 program for a customer.  I created a shortcut to it on the desktop.  But Windows won't allow me to to copy it to the task bar as perl6 is a batch file. Looking at

Re: tight?

2018-05-05 Thread Elizabeth Mattijsen
> On 5 May 2018, at 10:59, ToddAndMargo wrote: > I am looking at: > https://docs.perl6.org/language/operators#infix_&&; > > I understand what a Boolean AND is, but why are > they using the term "Tight"?What am I missing? Precedence is what you’re missing. $ 6 'say 0 || 42 or 666' WARNINGS

tight?

2018-05-05 Thread ToddAndMargo
Hi All, I am looking at: https://docs.perl6.org/language/operators#infix_&&; I understand what a Boolean AND is, but why are they using the term "Tight"?What am I missing? Many thanks, -T