- or download this
require Foo::Bar; # a splendid bareword
- or download this
$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";
- or download this
"Win32::Service"->require()