Help for this page

Select Code to Download


  1. or download this
    %last_name = ();
    $x = \$last_name{fred}; # creates hash element, value is undef
    $last_name{fred} = "flintstone";
    print $$x; # prints flintstone
    
  2. or download this
    undef %last_name; @last_name{qw(fredref fred)} = (\$last_name{fred}, "
    +flintstone");