- 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";
- or download this
print %{$test{fake_key}} . "\n";
- or download this
my %another= %{$test};
print $another{fake_key} . "\n";