Help for this page

Select Code to Download


  1. or download this
    my %hash;
    $hash{"one"} = [[1,2,3],[]];
    
  2. or download this
    print @{@{$hash{"one"}}[0]}, "\n";
    
  3. or download this
    print @{${$hash{"one"}}[0]}, "\n";
    
  4. or download this
    my @array = (4,5,6);
    print @array[0];