Help for this page

Select Code to Download


  1. or download this
            $a_ref = [ ... ];
    
            # you can:
            print $a_ref->[0];
    
  2. or download this
            *a = $a_ref;
    
            # now you can:
            print $a[0];
    
  3. or download this
            use strict;
            *foo = [];