in reply to Anyone using Attribute::Default from CPAN?

I don't know what went wrong, but you have another alternative. You can use Exporter without inheriting from it:
package Co; use Exporter qw(import); our @EXPORT_OK = qw(f); ...

Replies are listed 'Best First'.
Re^2: Anyone using Attribute::Default from CPAN?
by rovf (Priest) on Jun 05, 2008 at 14:41 UTC
    Thank you for this suggestion, but this doesn't work either: Though I don't get any error message, the default argument is not supplied to the function. :-(
    -- 
    Ronald Fischer <ynnor@mm.st>