Help for this page

Select Code to Download


  1. or download this
    use List::MoreUtils qw( apply );
    my $names = join '|', apply { chomp } <STDIN>;
    
  2. or download this
    use Nested::Loops qw( Filter );
    my $names = join '|', Filter { chomp } <STDIN>;