Help for this page

Select Code to Download


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