Subject: | File::Extract::Result object should stringify |
My first instinct was to write code like this:
my $e=File::Extract->new();
print $e->extract($filename);
It would be nice if that just worked. It's as simple as saying:
use overload '""' => 'text';
in File::Extract::Result.