Help for this page

Select Code to Download


  1. or download this
            elsif ($sym =~ 'auto') {
                # To auto-seed or not
                $auto_seed = $sym =~ /no|!/;
            }
    
  2. or download this
    no strict 'refs'<code> to
    <code>
            { no strict 'refs'; *{"${pkg}::$sym"} = \&$sym; }
    
  3. or download this
                eval { require LWP::UserAgent; };
                if ($@) {
                    push(@errors, "Failure loading LWP::UserAgent: $@");
                    next;
                }
    
  4. or download this
                eval { require LWP::UserAgent }
                  or do {
    ...
                            "Failure loading LWP::UserAgent: $@";
                          next;
                        };