On 1/1/21 3:23 AM, Kevin Pye wrote:
..^ is an operator. You can't put spaces in the middle of an operator.

> for ^2.1..4.5 {print "$_\n";}
Range objects are not valid endpoints for Ranges
  in block <unit> at <unknown file> line 1

> for 2.1^..4.5 {print "$_\n";}
3.1
4.1

> for .1^...5 {print "$_\n";}
1.1
2.1
3.1
4.1


both still increments by 1

What am I doing wrong?

Reply via email to