Help for this page

Select Code to Download


  1. or download this
    chomp (my @lines=<STDIN>);            
    my @due=sort @lines;
    print "@due\n";
    
  2. or download this
    print sort chomp (my @lines=<STDIN>);