Help for this page
package Foo; use base 'Exporter'; ... @EXPORT_OK = qw( $foo ); $foo = 3;
use Foo qw($foo); print $foo;