Help for this page

Select Code to Download


  1. or download this
    tie my @array, 'Some::Thing';
    
    ...
    
    $array[ $n ] *= 5;
    
  2. or download this
    my $myObj  = Some::Thing->new();
    ...
    
    $myObj->setItem( $n, $myObj->getItem( $n ) * 5 );