Help for this page

Select Code to Download


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