Help for this page

Select Code to Download


  1. or download this
    my %valeur;
    if(
        @values
    ...
    ) {
        %valeur = %{ $values[0][0] };
    }
    
  2. or download this
    my %valeur;
    if ( my $want = Dive( \@values, qw/ 0 0 / ){
        %valeur = %$want;
    }