Perl: Difference between revisions

From Rixort Wiki
Jump to navigation Jump to search
(Created page with "== Robust scripts == All scripts should start with the following: use strict; use warnings; use utf8; Only remove one or more of the above if you '''really''' know what...")
 
Line 6: Line 6:
  use warnings;
  use warnings;
  use utf8;
  use utf8;
use autodie;


Only remove one or more of the above if you '''really''' know what you are doing.
Only remove one or more of the above if you '''really''' know what you are doing.

Revision as of 11:48, 21 August 2019

Robust scripts

All scripts should start with the following:

use strict;
use warnings;
use utf8;
use autodie;

Only remove one or more of the above if you really know what you are doing.