Help for this page

Select Code to Download


  1. or download this
    %HoA =(
    ##id =>["term","parent_id","left_id", "right_id"]
    ...
    6 => ["Fingers","5","",""],
    7 => ["Thumbs","6","",""]
    );
    
  2. or download this
    my %HoA;
    my $k;
    ...
    local $" = "|";
    print "$k = @{$HoA{$k}}\n";
    }