Help for this page

Select Code to Download


  1. or download this
    my @array = ( { one => 'USA', ... }, {...}, ... );
    
  2. or download this
    my @array = ( [ 'USA', 'GOD', '690557', 'hello how are u' ],  [ ... ],
    + ... );
    
  3. or download this
    foreach my $aref (@array) {
       # If you really need them...
       my ($one, $two, $three, $four) = @$aref;
       # Etc. etc.
    }