http://www.perlmonks.org?node_id=954435


in reply to Re^2: Module provides both of functional interface and object-oriented one
in thread Module provides both of functional interface and object-oriented one

On the other hand, there's nothing that forbids you from creating wrappers which you can export. Adding to my previous code:

@EXPORT_OK = qw/get_bar/; sub get_bar { my $var = shift; # your $blosxom::header hashref bar($var, @_); }