Help for this page
my @plugins = <plugins/*.pm>;
for (@plugins) { require $_; # Basically "use"-ing the file ... s/\.pm$//; push @pluginInstances, $_->new; # Create a new instance }