#! /usr/bin/perl -w
use strict;
use MADEUP::MODULE;
#Compeletly made up module
my $made_up = new MADEUP::MODULE;
#A member function of MADEUP::MODLE which returns a hash
my $test = $made_up->Return_Hash();
#I know the key "fake_key" and I want to print off of it
print $test{fake_key} . "\n";
####
print %{$test{fake_key}} . "\n";
####
my %another= %{$test};
print $another{fake_key} . "\n";