No examples are given, but are we to assume that this:
for ($x = 0; $x < 100; $x++) {
...
}
becomes this:
loop $x=0; $x < 100; $x++ {
...
}
How would you use an $x lexically scoped to the loop block?
Most of the other constructs seem to be using a '-> $x' construct.
loop my $x=0; $x < 100; $x++ {
...
}
?
--
Bryan C. Warnock
[EMAIL PROTECTED]
