Help for this page

Select Code to Download


  1. or download this
    #!/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"
    +;
    
  2. or download this
    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>