Perl

From Rixort Wiki
Revision as of 11:41, 21 August 2019 by Paul (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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 you are doing.