Help for this page

Select Code to Download


  1. or download this
    sub test {
        my $result = $object->createNewObject() || return;
        push @results, $result;
        return $result;
    }
    
  2. or download this
    sub test {
        push @results, $object->createNewObject() || return;
        return $results[-1];
    }