Help for this page

Select Code to Download


  1. or download this
    my @array = ([1,2], [3,4], [5,6]);
    
  2. or download this
    @rows = $dbAdo->ct_sql($sql);
      foreach $row (@rows) {
        $main::systemNames{$row->[0]} = $row->[1];
    }
    
  3. or download this
    my %hash = map { $$_[0] => $$_[1] } @array;