#!/usr/bin/perl -w use strict; my $foo; BEGIN { $foo = "bar" } use License ($foo); #### package License; use strict; my $foo; sub import { shift; $foo = $_[0]; print "foo = $foo\n"; } 1; #### my $foo = "bar"; require License; License->import($foo);