Help for this page
use lib "/home/avarus/perl/myPackages/"; my $packageName = "test"; use $packageName; # does not work, segfaults
my $file; # needs to be outside the BEGIN block BEGIN { $file = "Test.pm"; require $file; }