Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    
    #__prints:
    #Nullam quis augue.
    
  2. or download this
    $/=undef;
    my $data = <DATA>;
    ...
    @text = map{tr/\n/ /;$_}@text;
    print join("\n",@text),"\n";
    #print join(" ",@text); #alternative to put a space after the period.