# Set the hash entries in hash %theHash identified by keys "one",
# "two", and "three" to be 11, 22, and 33 respectively
@theHash{"one", "two", "three"} = (11, 22, 33);
# Combine hashes %HashOne and %HashTwo ineffeciently
%HashOne = (%HashOne, %HashTwo);
# Combine hashes %HashOne and %HashTwo effeciently
%HashOne{keys(%HashTwo)} = (values(%HashTwo));