Help for this page

Select Code to Download


  1. or download this
    sub get_attribute {
        my ( $self, $attribute ) = @_;
    ...
            ? $self->{ATTRIBUTES}{$attribute}
            : undef;
    }
    
  2. or download this
    sub get_attribute {
        my ( $self, $attribute ) = @_;
    
        return $self->{ATTRIBUTES}{$attribute};
    }