Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
      print "First element by ref = " . $aref->[0] . "\n";
      print "First element by sugar = " . $$aref[0] . "\n";
    }
    
  2. or download this
    First element by ref = a
    First element by sugar = a