Help for this page

Select Code to Download


  1. or download this
    while(<>) {map { print "$_\n"} split; print "newline\n"}
    
  2. or download this
    undef $/;
    $_=<>;
    s/\n/ newline /g; 
    map{ print "$_\n"} split;