source: trunk/essentials/dev-lang/perl/ext/Storable/t/HAS_OVERLOAD.pm

Last change on this file was 3181, checked in by bird, 19 years ago

perl 5.8.8

File size: 185 bytes
Line 
1package HAS_OVERLOAD;
2
3use overload
4 '""' => sub { ${$_[0]} }, fallback => 1;
5
6sub make {
7 my $package = shift;
8 my $value = shift;
9 bless \$value, $package;
10}
11
12++$loaded_count;
13
141;
Note: See TracBrowser for help on using the repository browser.