On Wed, Jun 11, 2008 at 04:49:18PM -0700, [EMAIL PROTECTED] wrote:
> -    $min ..^ $max    $ min .. $max-1
> -    $min .. ^$max    # $min .. (0..$max-1)
> +    0 ..^ 10 # 0 .. 9
> +    0 .. ^10 # 0 .. (0..9)

Ah, I should have been more specific - I meant that, since ~~ treats
Ranges as continuous intervals, 0 ..^ 10 isn't the same as 0 .. 9.
Although I guess there's no way to unabbreviate 0 ..^ 10...

-ryan

Reply via email to