Help for this page

Select Code to Download


  1. or download this
    #! /usr/bin/perl -w
    use strict;
    ...
    
    #I know the key "fake_key" and I want to print off of it
    print $test{fake_key} . "\n";
    
  2. or download this
    print %{$test{fake_key}} . "\n";
    
  3. or download this
    my %another= %{$test};
    print $another{fake_key} . "\n";