Help for this page

Select Code to Download


  1. or download this
        package Tie::NewStdArray;
        use Tie::Array;
    ...
        
        $somearray[0]=12; #intercepted by tie
        $object[0]=12;    #uses the blessed array
    
  2. or download this
    $three=$two+$one;
    print $three[12];