aboutsummaryrefslogtreecommitdiff
path: root/challenge-001/abigail/perl/ch-1.pl
blob: 8fd893fb9376e12a4305353b0adce05fccd5ad75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/opt/perl/bin/perl

use 5.032;

use strict;
use warnings;
no  warnings 'syntax';

use experimental 'signatures';
use experimental 'lexical_subs';

while (<>) {
    my $changes = y/e/E/;
    say $_, $changes
}