The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#=loop1.pl - Perl 5 Version
use strict;

for( my $i = 1; $i <= 10; $i++) {
	print "$i\n";
}