Related questions
install perl module Net::SSLeay through cpan
I have tried to install Net::SSLeay though cpan to install Email::Send::SMTP::TLS but I am getting the following error.
cpan[5]> install Net::SSLeay
Running install for module 'Net::SSLeay'
Running make for M/MI/MIKEM/Net-SSLeay-1.49.…
Find size of an array in Perl
I seem to have come across several different ways to find the size of an array. What is the difference between these three methods?
my @arr = (2);
print scalar @arr; # First way to print array size
print $#arr; # Second way to …