Help for this page

Select Code to Download


  1. or download this
    my %hash;
    @hash{ qw/number score alignment/ } = @cols;
    
  2. or download this
    my %hash;
    @hash{ qw/number score alignment/ } = map{ \$cols[$_] } 0 .. $#cols;
    
  3. or download this
    my %hash = (
        number    => '$cols[0]',
        scorecons => '$cols[1]'
        alignment => '$cols[2]'
    );
    
  4. or download this
    @cols = ( [ qw/value1 number   / ],
              [ qw/value2 scorecons/ ],
              [ qw/value3 alignment/ ]
    );