Help for this page

Select Code to Download


  1. or download this
    %h = ( 
             '1' => [
    ...
                     ],
             ...
    );
    
  2. or download this
      $num = 1;
      $string = join '', @{$h{$num}}; # string is now helloyoutree
      $num = 4; # select the string with number 4 ( lovefood )
      $string = join '', @{$h{$num}};