Help for this page

Select Code to Download


  1. or download this
    $song{$chart_position}{TITLE} = 'Insomnia';
    $song{$chart_position}{VISITOR_POS} = 10;
    
  2. or download this
    for $pos ( sort { $a <=> $b } keys %song ) {
      print "$pos $song{$pos}{VISITOR_POS} $song{$pos}{TITLE}\n";
    }
    
  3. or download this
    for $pos ( sort { $song{$a}{VISITOR_POS} <=> $song{$b}{VISISTOR_POS} }
    + keys %song ) {
      print "$pos $song{$pos}{VISITOR_POS} $song{$pos}{TITLE}\n";
    }