Help for this page

Select Code to Download


  1. or download this
    require Foo::Bar;     # a splendid bareword
    
  2. or download this
        my $class = 'Foo::Bar';
        require $class;       # $class is not a bareword
    #or
        require "Foo::Bar";   # not a bareword because of the ""
    
  3. or download this
    eval "require $class";
    
  4. or download this
    require "Foo/Bar.pm";