From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

#!/usr/bin/perl
use strict;
my $exp = 1;
for my $i (1 .. 20)
{
$exp *= 2;
}