Help for this page

Select Code to Download


  1. or download this
    ...
          unless ( exists $abc{$parent}{$child} )
    ...
            $abc{$parent}{$child}=\%c;
          }
    ...
    
  2. or download this
    # shared hash version.
    my %abc : shared ;
    ...
          $abc{ $parent }{ $child } = 1;
      }
    }