Tomas Cohen Arazi
554c9cb7d9
The road of excess leads to the palace of wisdom; for we never know what is enough until we know what is more than enough. Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
17 lines
509 B
Perl
Executable file
17 lines
509 B
Perl
Executable file
use Modern::Perl;
|
|
use utf8;
|
|
use Encode qw( encode_utf8 );
|
|
|
|
return {
|
|
bug_number => undef,
|
|
description => 'Increase DBRev for 22.06',
|
|
up => sub {
|
|
my ($args) = @_;
|
|
my ($dbh, $out) = @$args{qw(dbh out)};
|
|
|
|
say $out encode_utf8 '📜 The road of excess';
|
|
say $out encode_utf8 '📜 leads to the palace of wisdom;';
|
|
say $out encode_utf8 '📜 for we never know what is enough';
|
|
say $out encode_utf8 '📜 until we know what is more than enough.';
|
|
},
|
|
}
|