Help for this page

Select Code to Download


  1. or download this
    my @numbers = ( undef, 
                    { it => "uno", sp => "uno",  fr => "un"}, 
    ...
                    { it => "tre", sp => "tres", fr => "trois"},
                    # ...
                  );
    
  2. or download this
    0  ARRAY(0x6004f9c80)
       0  undef
    ...
          'fr' => 'trois'
          'it' => 'tre'
          'sp' => 'tres'
    
  3. or download this
    print $numbers[2]{it};