From: [EMAIL PROTECTED] (Randal L. Schwartz) Date: 04 May 2004 09:26:52 -0700
>>>>> "Greg" == Greg Allen <[EMAIL PROTECTED]> writes: Greg> $tranformed = map {local $_=$_; s,::,/,g; $_} $package Ugh. I'd strangle someone who did that. $tranformed = do { local $_ = $package; s,::,/,g; $_ }; better? kj