- or download this
use strict;
use warnings;
...
say "\@$symname array is populated" if @{ *sym }; # <-- HERE
say "\%$symname hash is populated" if %{ *sym }; # <-- and HERE
}
- or download this
%CORE:: hash is populated
%Carp:: hash is populated
...
%utf8:: hash is populated
%version:: hash is populated
%warnings:: hash is populated
- or download this
use strict;
use warnings;
...
}
}
}