# NAME Exporter::Auto - Export public functions automatically. # SYNOPSIS package Foo; use Exporter::Auto; sub foo { } package main; use Foo; foo(); # <= this function was exported! # DESCRIPTION I'm tired to push function names to @EXPORT. Perl5 should add functions automatically!!!111 # AUTHOR Tokuhiro Matsuno # SEE ALSO This module uses magical [B::Hooks::EndOfScope](http://search.cpan.org/perldoc?B::Hooks::EndOfScope). If you think this module is too clever, please try [Module::Functions](http://search.cpan.org/perldoc?Module::Functions) instead. # LICENSE Copyright (C) Tokuhiro Matsuno