Help for this page

Select Code to Download


  1. or download this
    $arrayref = [ qw/A B C D/ ];
    {
        no strict "vars";
        *array_alias = $arrayref;
    }
    print $array_alias[0];