Help for this page

Select Code to Download


  1. or download this
    sub upack_with_shift {
        my $foo = shift;
    ...
        # generates a warning if warnings on.  "Use of uninitialized value
    + in join at line mumble" 
    
    }
    
  2. or download this
    #Accessor
    sub Name {
    ...
    
      return $self->{NAME};
    }