- or download this
for ($i = 0; $i <= $#sortedNames; $i++) {
- or download this
for my $i (0..$#sortedNames) {
- or download this
for my $name (@sortedNames) {
- or download this
$toOutput = reverse $temp[0];
$toOutput .= $x;
$output = reverse $toOutput;
- or download this
$output = $x . $temp[0];