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