Larry,
As long as you're trying to figure out how to shoehorn in the last few
available punctuation symbols, and thinking about if there are any
bracketers left, I wondered if there was a chance of a chunking operator
for literate programming? So you can do something like this, if <<<>>>
were the operator:
=doc code
We loop through the array, operating on each item:
=cut
for @list -> $item is rw { # is 'is rw' assumed with for? I forget...
<<<operation>>>
}
=doc code
The operation performed is incrementing each item by one:
=chunk operation
$item++;
=cut
Trey