Help for this page

Select Code to Download


  1. or download this
    my @words = <>;
    chomp(@words);
    print(join(';', @words), "\n");
    
  2. or download this
    perl -nle'push @w, $_; END { print join ";", @w }'