#!/usr/bin/perl

%myHash = (first => 1, second => 2, third => 3); #create a hash with 
            # key/value pairs
            print "the value of the second is $myHash{second}\n";
