use strict; use warnings; package Example; use parent 'Exporter'; our ($VERSION, @EXPORT, $debug); $VERSION = '1.0'; @EXPORT = qw($debug); $debug = 1; 1; #### #!/usr/bin/env perl use strict; use warnings; use lib '.'; use Example; print "debug = $debug\n";