NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Example of why this is hard (Score:1)
For the benefit of others reading your journal that don't fully understand why this is probably not an easy thing to do....
sub double { 2 * $_[0] }Seems straight forward enough and shouldn't have any side effects. Hrm, what if $_[0] is an alias to a tied variable. What if the FETCH method of that variable has action at a distance. Can't tell just by looking at the source :-(
Re:Example of why this is hard (Score:1)
Reply to This
Parent
Re: (Score:1)
Re: (Score:1)
Then again, I need to brush up on my internals knowledge before I make any more pi-in-the-sky proposals.