Help for this page

Select Code to Download


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