Help for this page

Select Code to Download


  1. or download this
       my $self = shift;
    
  2. or download this
       $self{theValue}
    
  3. or download this
       $self -> {theValue}
    
  4. or download this
    package Test;
    
    ...
            $self -> {theValue} = $value; # note '->'
    }