John asked:
> Can properties be temp()orarily masked? For example:
>
> foreach my $array (@arrays)
> {
> temp $array.sep = ', '; # assuming this is a real property
> print "$array\n"; # prints "item1, item2, item3, ..."
> }
I would expect so,
(I figured it'd take me longer to track this information down myself than it
would to get a response from the list. Laziness... :)
Can properties be temp()orarily masked? For example:
foreach my $array (@arrays)
{
temp $array.sep = ', '; # assuming this is a real property
p