Help for this page

Select Code to Download


  1. or download this
    for my $key ( sort keys %title ) {
    
  2. or download this
    # This will sort by title, then by topic id
    sub by_course_and_title {
    ...
             $title{$a}{il2e002_topic_id_k} cmp title{$b}{il2e002_topic_id
    +_k};
    }
    for my $key ( sort &by_course_and_title keys %title ) {
    
  3. or download this
    for my $foo ( @foo ) {
        # Do something interesting
    }