Help for this page

Select Code to Download


  1. or download this
    say           $transcripts{$transcript_ip}{$transcript_id};           
    +                # gives me the hash reference of the lowest (3rd deep
    + hash)
    say        %{ $transcripts{$transcript_ip}{$transcript_id} };         
    +                # gives me that entire hash (key value pairs)
    say        %{ $transcripts{$transcript_ip}{$transcript_id} }{@transcri
    +pts_columns};   # gives me my desired slice of that hash (key value p
    +airs)
    say keys { %{ $transcripts{$transcript_ip}{$transcript_id} }{@transcri
    +pts_columns} }; # gives me my desired slice of that hash (keys only)
    say        @{ $transcripts{$transcript_ip}{$transcript_id} }{@transcri
    +pts_columns};   # gives me my desired slice of that hash (values only
    +)