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

#######################################################
# lab03_print1
#
# demo difference ""'s make around array names with print!
#
# modified by Sharon Tuttle from "Learning Perl",
#    by Schartz and Phoenix
#
# last modified: 9-7-04
#######################################################

print @ARGV, "\n";
print "@ARGV", "\n";

# end of lab03_print1