Help for this page

Select Code to Download


  1. or download this
    my @sorted= sort qw(this list isn't sorted yet);
    my $num= 3;
    display_results( @sorted, $num );
    
  2. or download this
    ("isn't","list","sorted","this","yet",3)
  3. or download this
    display_results( $num, @sorted );
    sub display_results {
        my( $num, @sorted )= @_;