- or download this
require Module1;
require Module2;
Module1::foo();
Module2::foo();
- or download this
my $mod = some_condition() ? 'Module1' : 'Module2';
eval "require $mod; ${mod}::foo()";
- or download this
use strict;
use warnings;
...
# eval "$mod->import( 'foo' ); 1" or die;
foo();