Help for this page

Select Code to Download


  1. or download this
    my %sequence = (
       1345 => 10,
       123  => 20,
       500  => 30,
    );
    
  2. or download this
    $sequence{901} = 40;
    
  3. or download this
    $sequence{$id} = $score;
    
  4. or download this
    print "$_ => $sequence{$_}\n" for sort {$a<=>$b} keys %sequence;