#!/usr/bin/perl %hash = qw(first David last Sherrill); # need slash below to distinguish the inner quotes # in the hash lookup # from the outer quotes of the print statement print "first name: $hash{\"first\"}\n"; # first name: David