use strict; use warnings;
my @array;
if (@array)
{
print "array not empty";
}
else
{ print "array empty";
}
------------------------------------------
unless (@array)
{
print "There is element inside array.";
exit(1);
}
0 comments:
Post a Comment