Help for this page

Select Code to Download


  1. or download this
    my @arr=['rose','orange','green'];
    $hash{"first"}=[@arr];
    
  2. or download this
    my @arr = qw(rose orange green);
    $hash{"first"}=\@arr;
    
  3. or download this
    push(@{$hash{first}}, qw(red blue));
    
  4. or download this
    #!/usr/bin/perl
    
    ...
                         ]
            };
    
  5. or download this
    $hash{first} = [];
    push(@{$hash{first}}, \@arr);
    ...
    @newarr = qw(red blue);
    push(@{$hash{first}}, \@newarr);