in reply to Re: ?Re: Re: Re: Serializing coderefs
in thread Serializing coderefs
It fails because there's no access to $secret_number from outside the coderef, so we can't tell what the "magic constant" should be. All you get is:my $increment_by_secret = do { my $secret_number = 7; sub { $secret_number + shift }; };
(Just tested.){ ($secret_number + shift(@_)); }
-- Randal L. Schwartz, Perl hacker
|
|---|