From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
12345678910 #!/usr/bin/perluse strict;use warnings;my $exp = 1;for my $i (1 .. 20){ $exp *= 2;}
#!/usr/bin/perl
use
strict;
warnings;
my
$exp
= 1;
for
$i
(1 .. 20)
{
*= 2;
}