Help for this page

Select Code to Download


  1. or download this
    ...
    my $o = "";
    ...
        $o .= $_.' ';
    }
    print $o."\n";
    
  2. or download this
    ...
    my $o = "";
    ...
        $o .= $_;
    }
    print $o."\n";
    
  3. or download this
    my $c = 0;
    
    ...
        print STDERR "Call ($c) fetching the element with index: $index\n"
    +;
        return $self->[ $index ].$c;
    }