#!/usr/bin/perl
# [[[ PREPROCESSOR ]]]
# <<< PARSE_ERROR: 'ERROR ECOPARP00' >>>
# <<< PARSE_ERROR: 'Unexpected Token: -' >>>
# [[[ HEADER ]]]
use
RPerl;
use
strict;
use
warnings;
our
$VERSION
= 0.001_000;
# [[[ CRITICS ]]]
## no critic qw(ProhibitUselessNoCritic ProhibitMagicNumbers RequireCheckedSyscalls) # USER DEFAULT 1: allow numeric values & print operator
## no critic qw(RequireInterpolationOfMetachars) # USER DEFAULT 2: allow single-quoted control characters & sigils
# [[[ OPERATIONS ]]]
my
string
$foo
=
'foo'
x 0;
my
string
$bar
=
'bar'
x 1;
my
string
$bat
=
'bat'
x 2;
my
string
$baz
=
'baz'
x - 4;
my
string
$bax
=
'bax'
x 8;
q{have $foo = '}
,
$foo
,
q{'}
,
"\n"
;
q{have $bar = '}
,
$bar
,
q{'}
,
"\n"
;
q{have $bat = '}
,
$bat
,
q{'}
,
"\n"
;
q{have $baz = '}
,
$baz
,
q{'}
,
"\n"
;
q{have $bax = '}
,
$bax
,
q{'}
,
"\n"
;