Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
        print "\n";
    }
    print "+", (("-"x16)."+")x4, "\n";
    
  2. or download this
    use warnings;
    use strict;
    ...
    print $ofh do { local $/; <$ifh> };
    close $ifh;
    close $ofh;