Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#!/usr/bin/perl
use strict;
use warnings;
my @array = qw(A b C D e);
my @mapped = map {lc} @array;
print join("\n", @mapped);
#!/usr/bin/perl
use strict;
use warnings;
my @array = qw(A b C D e);
my @mapped;
foreach (@array) {
push @mapped, lc($_);
}
print join("\n", @mapped);