On Sun, Sep 13, 2009 at 5:14 PM, Christian Sturm <[email protected]> wrote:
> Hi,
>
> do you know a short and easy way to iterate a block X times?
>
Here's one using the upto operator:
for ^$X {
$s *= $s;
}
--
Jan
On Sun, Sep 13, 2009 at 5:14 PM, Christian Sturm <[email protected]> wrote:
> Hi,
>
> do you know a short and easy way to iterate a block X times?
>
Here's one using the upto operator:
for ^$X {
$s *= $s;
}
--
Jan