Help for this page
#!/usr/bin/perl -w use strict; ... print "contents of array referred to by \$bb <@$bb>\n"; print "reference to the array referred to by \$aa <$cc>\n"; print "contents of array referred to by \$cc, or array a <@$cc>\n" +;
array a <one two three> reference to array a <ARRAY(0x148bac)> ... reference to the array referred to by $aa <ARRAY(0x148bac)> contents of array referred to by $cc, or array a <one two three>