3 lines
97 B
Raku
3 lines
97 B
Raku
my @abc = 'a'..'z';
|
|
my $abc = [@abc».uc, @abc];
|
|
put .trans: $abc => $abc».rotate(13) for lines
|