> Date: Fri, 3 Jan 2003 12:06:24 -0500
> From: Chris Dutton <[EMAIL PROTECTED]>
> 
> On Friday, January 3, 2003, at 12:00 PM, Chris Dutton wrote:
> 
> > print "date" if 1..31 given $var;
> 
> Except that this would always be true.  Nevermind, I'm an idiot.

You're not such an idiot.  You just got one word wrong:

    print "date" when 1..31 given $var;

There is definitely postfix C<when>. C<for>, and C<while> are postfix,
so I don't see why C<given> wouldn't be.  Miko seems to want it
enough.  But, in accordance with Larry's "Nope, still can't chain
[postfix conditions,]" this would not be very useful.  Hopefully he'll
reconsider whether you can chain them or not? :)

Luke

Reply via email to