S
Size: a a a
S
W
S
a
МК
VG
VO
VG
VG
VO
VG
VO
VG
VG
my $host; # our то ж самое
...
my %callbacks = (
...
some => sub {
if ($_ eq $host) ...
}
);
...
$host = ARGV...
Use of uninitialized value $host in string eq ...YK
$host = $ARGV[0] // ''
if ($_ eq ($host // ''))
if (defined($host) && $host eq $_)
VG
YK
no warnings 'uninitialized';в колбэк
SZ
VG
VG