diff options
| author | Abigail <abigail@abigail.be> | 2021-03-22 19:11:08 +0100 |
|---|---|---|
| committer | Abigail <abigail@abigail.be> | 2021-03-22 19:11:08 +0100 |
| commit | 258a37c588de164984d891a922140dc99390a6f8 (patch) | |
| tree | 429c415a524a396752a1c7b3be02daf715636d46 | |
| parent | e937ac74e25f1f977370144cbb8b82c874f83be6 (diff) | |
| download | perlweeklychallenge-club-258a37c588de164984d891a922140dc99390a6f8.tar.gz perlweeklychallenge-club-258a37c588de164984d891a922140dc99390a6f8.tar.bz2 perlweeklychallenge-club-258a37c588de164984d891a922140dc99390a6f8.zip | |
Avoid wide character warning
| -rw-r--r-- | challenge-105/abigail/perl/ch-2.pl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/challenge-105/abigail/perl/ch-2.pl b/challenge-105/abigail/perl/ch-2.pl index f551468315..00122bea1c 100644 --- a/challenge-105/abigail/perl/ch-2.pl +++ b/challenge-105/abigail/perl/ch-2.pl @@ -9,6 +9,12 @@ no warnings 'syntax'; use experimental 'signatures'; use experimental 'lexical_subs'; +# +# Run as: perl ch-2.pl +# + +binmode STDERR, ":utf8" or die "bimode: $!"; + die << "--"; This challenge is impossible. This is a children's game, played with children who cannot read or write yet. The song is entirely |
