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.
$P1 = "HELLO";
$P2 = "WORLD";
for ($i=1; $i<=2; $i++) {
print "$P$i\n";
}
use strict;
use warnings;
my %P = (1 => "HELLO", 2 => "WORLD");
for (my $i=1; $i<=2; $i++) {
print $P{$i},"\n";
}
use strict;
use warnings;
my $P1 = "HELLO";
my $P2 = "WORLD";
for (my $i=1; $i<=2; $i++) {
print ${"P$i"},"\n";
}
my $p = qw{HELLO WORLD};
print $_, "\n" foreach (@p);