diff options
| author | Jörg Sommrey <28217714+jo-37@users.noreply.github.com> | 2023-03-26 12:58:53 +0200 |
|---|---|---|
| committer | Jörg Sommrey <28217714+jo-37@users.noreply.github.com> | 2023-04-18 21:38:07 +0200 |
| commit | 61d50ade92975c7055cb75174f77be99857a65b8 (patch) | |
| tree | a4a12b33fac473610ac876c85bca21b328feaa60 | |
| parent | ec3eb82c6fbf7b795c2646713b23538127571937 (diff) | |
| download | perlweeklychallenge-club-61d50ade92975c7055cb75174f77be99857a65b8.tar.gz perlweeklychallenge-club-61d50ade92975c7055cb75174f77be99857a65b8.tar.bz2 perlweeklychallenge-club-61d50ade92975c7055cb75174f77be99857a65b8.zip | |
challenge 029 task 1
| -rwxr-xr-x | challenge-029/jo-37/perl/ch-1.pl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/challenge-029/jo-37/perl/ch-1.pl b/challenge-029/jo-37/perl/ch-1.pl new file mode 100755 index 0000000000..3cf0cf7be4 --- /dev/null +++ b/challenge-029/jo-37/perl/ch-1.pl @@ -0,0 +1,7 @@ +#!/usr/bin/perl + +use v5.16; +use warnings; + +# Brace expansion does not work on separate words! +say for <Perl{Daily,Weekly,Monthly,Yearly}Challenge>; |
