Please send questions to st10@humboldt.edu .
#!/usr/bin/perl -w

#######################################################
# lab02_big_arrow
#
# trying out big arrow, => , another way to "spell"
# a comma Perl --- to make literal lists being stuffed
# into hashes easier to read;
#
# modified by Sharon Tuttle from "Learning Perl",
#    by Schwartz and Phoenix
#
# last modified: 9-2-04
#######################################################

%order_totals = ("chocolate"=>13, 
                 "hamburger"=>10, 
                 "tofu dog"=>12,
                );


@hold_order_totals = %order_totals;
print "@hold_order_totals\n";

# end of lab02_big_arrow