Perl

From Rixort Wiki
Revision as of 10:48, 21 August 2019 by Paul (talk | contribs) (Robust scripts)
Jump to navigation Jump to search

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.