- or download this
require 'MAS::Global';
# or
my $class = 'MAS::Global';
require $class;
- or download this
require Foo::Bar; # a splendid bareword
- or download this
my $class = 'Foo::Bar';
require $class; # $class is not a bareword
#or
require "Foo::Bar"; # not a bareword because of
+the ""
- or download this
eval "require $class";