Help for this page

Select Code to Download


  1. or download this
    @arry = ( $one, $two, $three );
    
  2. or download this
    @arry = ( \$one, \$two, \$three );
    ${$arry[1]}++; # Increment the referent's value.
    print "two is $two\n";
    print '$arry[1] is: ', $arry[1], "\n";
    print '${$arry[1]} is: ', ${$arry[1]}, "\n";