source:
trunk/essentials/dev-lang/perl/ext/Storable/t/HAS_OVERLOAD.pm
| Last change on this file was 3181, checked in by , 19 years ago | |
|---|---|
| File size: 185 bytes | |
| Line | |
|---|---|
| 1 | package HAS_OVERLOAD; |
| 2 | |
| 3 | use overload |
| 4 | '""' => sub { ${$_[0]} }, fallback => 1; |
| 5 | |
| 6 | sub make { |
| 7 | my $package = shift; |
| 8 | my $value = shift; |
| 9 | bless \$value, $package; |
| 10 | } |
| 11 | |
| 12 | ++$loaded_count; |
| 13 | |
| 14 | 1; |
Note:
See TracBrowser
for help on using the repository browser.
