- or download this
print "$_\n" for @array; # output each element in array on a separate
+ line
- or download this
for $element (@array) {
print "$element\n";
}
- or download this
$result = $object->method($arg1,$arg2) unless $something_else;
- or download this
if(not $something_else) {
$result = $object->method($arg1,$arg2);
}